public interface TableEventHandler
This interface is implemented by the Application and used when creating the TableListener
| Modifier and Type | Method and Description |
|---|---|
void |
eventsReceived(java.util.List<Event> events,
TableListener listener)
Process inbound Events.
|
void eventsReceived(java.util.List<Event> events, TableListener listener)
The Event objects and the Row objects they contain are only valid in the scope of the callback. If any data from the Event is required after the callback has completed it must be copied and managed by the application.
events - A List of Event objects to process.listener - The TableListener that received the events.