Package com.gigaspaces.events

Interface Summary
DataEventSession The common interface that is used when working with data events.
EventSession a common interface for all EventSession types
a session is a statefull service used to register event listeners to the space
the state of the session contains the bounded transaction (if any)
and a set of configuration parameters such as the communication protocol
used to convey the events and whether of not to use FIFO order
the session can be used to register multiple listeners that share the same configuration.
 

Class Summary
EventSessionConfig this class is used to configure an EventSession.
EventSessionFactory the EventSessionFactory is a static service class that creates EventSession objects.
NotifyActionType an enum that specify a single notify action type such as write or update
and can also be used to composite a complex action type such as write OR update
NotifyActionType updateOrWrite = NotifyActionType.NOTIFY_UPDATE.or(NotifyActionType.NOTIFY_WRITE);
 

Enum Summary
EventSessionConfig.ComType