Event¶
-
public class
Event
¶ Basic event structure exchanged between RSB ports. It is a combination of metadata and the actual data to publish / subscribe to as payload. Events are often caused by other events, which e.g. means that their contained payload was calculated on the payload of one or more other events. To express these relations each event contains a set of EventIds that express the direct causes of the event. This means, transitive event causes are not modeled. Cause handling is inspired by the ideas proposed in: David Luckham, The Power of Events, Addison-Wessley, 2007
- Author
swrede
Constructors¶
Event¶
-
public
Event
(Scope scope, Class<?> type, Object data)¶ Creates a new event that can be send to scope.
- Parameters
scope – The scope to which the event will be sent.
type – A class object indicating the class of the data being sent in the event.
data – The actual data that should be sent in the event.
Event¶
Event¶
Methods¶
addCause¶
getCauses¶
getId¶
-
public EventId
getId
()¶ Returns the id of the event. This might not work in case the event has not been sent so far as the id is defined while sending.
- Throws
IllegalStateException – no id available so far
- Returns
event id
getMetaData¶
getType¶
isCause¶
removeCause¶
setId¶
-
public void
setId
(ParticipantId senderId, long sequenceNumber)¶ Sets all information necessary to generate the
EventId
of this event. After this callgetId()
is able to return an id.- Parameters
senderId – id of the sending participant for this event
sequenceNumber – sequence number within the specified participant