Interface INotifyDelegator
- All Superinterfaces:
EventListener, ManagedRemoteEventListener, Remote, RemoteEventListener
- All Known Implementing Classes:
LRMIBatchNotifyDelegatorListener, LRMINotifyDelegatorListener
Deprecated.
This is just a tag interface for the space to recognize the stub of the NotifyDelegator.
This interface should be used when the entry is needed on notify.
Example:
class MyNotifyDelegator implements INotifyDelegator
{
public void notify(RemoteEvent event)
{
EntryArrivedRemoteEvent arrivedRemoteEvent = (EntryArrivedRemoteEvent)event;
MyEntry myEntry = arrivedRemoteEvent.getEntry();
...
}
}
- See Also:
-
Method Summary
Methods inherited from interface ManagedRemoteEventListener
init, shutdownMethods inherited from interface RemoteEventListener
notify