EventId¶
-
public class
EventId
¶ This class serves as a Uniform Resource Name to identify events in an RSB system. This URN is based on the participant’s ID and a sequence number generated at the sender side unique for this participant. Both can be combined and returned as a UUID. Please note, that the sequence number is a 32bit unsigned integer and thus can overrun in a long-running system. In such cases, the timestamp has to be additionally considered to further distinguish between events.
- Author
swrede, jwienke
Constructors¶
EventId¶
-
public
EventId
(ParticipantId participantId, long sequenceNumber)¶ Creates a unique Id based on participant and sequence number.
- Parameters
participantId – the id of the participant causing this event
sequenceNumber – a number from a sequential list of numbers of events originating from that participant
Methods¶
formatSequenceNumber¶
-
public static String
formatSequenceNumber
(long value)¶ Formats an decimal sequence number as a string with 8 byte width encoding that number in hex. E.g. 0 -< 00000000, 1 -< 00000000, 32 -< 00000020. This is the format used inside the UUID-based representation.
- Parameters
value – the number to encode
- Returns
string representation of the number in hex format with length 8
getAsUUID¶
getParticipantId¶
-
public ParticipantId
getParticipantId
()¶ Returns the id of the participant that sent the event.
- Returns
participant id