Interface UpdateEventListener

All Superinterfaces:
java.util.EventListener

public interface UpdateEventListener
extends java.util.EventListener

An implementation of UpdateEventListener is passed in DataProvider.addUpdateEventListener method, to be notified by the DataProvider implementation when the corresponding asynchronous event is received.


Method Summary
 void processUpdateEvent(UpdateEvent e)
          Called by the DataProvider implementation to notify jScope that an asynchronous event has been received.
 

Method Detail

processUpdateEvent

public void processUpdateEvent(UpdateEvent e)
Called by the DataProvider implementation to notify jScope that an asynchronous event has been received.
Parameters:
e - The UpdateEvent describing the event (i.e. its name) just occured.
See Also:
UpdateEvent, DataProvider