Buffered Decrypted Message
data class BufferedDecryptedMessage(var message: ByteArray?, var isActive: Boolean, var commitDelay: ULong?, var senderClientId: ClientId?, var identity: WireIdentity) : Disposable(source)
A decrypted message that was buffered due to out-of-order delivery by the distribution service.
These are returned in the buffered_messages field of a DecryptedMessage when a commit is processed. They represent messages for the new epoch that arrived before the commit that created it.
Constructors
Link copied to clipboard
constructor(message: ByteArray?, isActive: Boolean, commitDelay: ULong?, senderClientId: ClientId?, identity: WireIdentity)