Event
data class Event( val seqno: SequenceNumber, val site: SiteIdentifier, val data: ByteArray) : Comparable<Event>
Content copied to clipboard
A class representing an Event. This will typically be used when a function should return a complete event, as well as its associated identifier.
You should prefer using some allocation-free functions for high-performance code.
Parameters
seqno
the SequenceNumber for this Event.
site
the SiteIdentifier for this Event.