Batch call event syncs.

Co-authored-by: Greyson Parrelli <greyson@signal.org>
This commit is contained in:
Alex Hart
2023-05-02 14:53:04 -03:00
parent 8dc45263cd
commit 4d2ce7a2be
3 changed files with 103 additions and 51 deletions

View 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;
}