Inheritance diagram for IEvent:
Public Types | |
enum | Style { Bulletin, Message } |
Public Member Functions | |
IChannel | getChannel () |
Style | getStyle () |
char[] | getStyleName () |
void | invoke (IPayload payload) |
void | reply (char[] channel, IPayload payload) |
Definition at line 49 of file IEvent.d.
|
The supported styles of event/listener |
|
Return the channel used to initiate the listener Reimplemented in ClusterEvent. Referenced by MessageConsumer::invoke(), BulletinConsumer::notify(), CacheInvalidatee::notify(), testClusterQueue(), and BulletinConsumer::this(). |
|
Return the style of the listener. Reimplemented in ClusterEvent. |
|
Return the style name of the listener. Reimplemented in ClusterEvent. Referenced by Cluster::createConsumer(). |
|
Invoke the listener with the specified payload Reimplemented in ClusterEvent. Referenced by MessageConsumer::invoke(), and BulletinConsumer::invoke(). |
|
Send a payload back to the producer. This should support all the various event styles. Reimplemented in ClusterEvent. Referenced by testClusterMessage(). |