mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-22 09:49:30 +01:00
Batch call event syncs.
Co-authored-by: Greyson Parrelli <greyson@signal.org>
This commit is contained in:
21
app/src/main/protowire/JobData.proto
Normal file
21
app/src/main/protowire/JobData.proto
Normal file
@@ -0,0 +1,21 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package signal;
|
||||
|
||||
option java_package = "org.thoughtcrime.securesms.jobs.protos";
|
||||
option java_multiple_files = true;
|
||||
|
||||
message CallSyncEventJobRecord {
|
||||
oneof conversationId {
|
||||
uint64 recipientId = 1;
|
||||
string callLinkId = 2;
|
||||
}
|
||||
|
||||
uint64 callId = 3;
|
||||
uint32 direction = 4;
|
||||
uint32 event = 5;
|
||||
}
|
||||
|
||||
message CallSyncEventJobData {
|
||||
repeated CallSyncEventJobRecord records = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user