From 663255e883089a47e7c5314759b0d4b98531933c Mon Sep 17 00:00:00 2001 From: erinn Date: Thu, 17 Jun 2021 14:40:06 -0700 Subject: [PATCH] add MessageCounterResync event --- event/common.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/event/common.go b/event/common.go index 610bdc1..0798c4b 100644 --- a/event/common.go +++ b/event/common.go @@ -200,6 +200,9 @@ const ( // For debugging. Allows test to emit a Syn and get a response Ack(eventID) when the subsystem is done processing a queue Syn = Type("Syn") Ack = Type("Ack") + + // For situations where we want to update $Identity -> $RemotePeer/$GroupID's total message count to be $Data + MessageCounterResync = Type("MessageCounterResync") ) // Field defines common event attributes