public class NullEventQueueListener extends Object implements EventQueueListener
| Constructor and Description |
|---|
NullEventQueueListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
handleEvent(int type,
int data)
Handles an event.
|
void |
handleExtendedEvent(int type,
EventDataReader eventDataReader)
Handles an extended event.
|
public void handleEvent(int type,
int data)
EventQueueListenerThis method is called by the queue when an event with the right type is read.
handleEvent in interface EventQueueListenertype - the type of the event to handle.data - the data of the event to handle.public void handleExtendedEvent(int type,
EventDataReader eventDataReader)
EventQueueListenerThis method is called by the queue when an extended event with the right type is read.
handleExtendedEvent in interface EventQueueListenertype - the type of the event to handle.eventDataReader - the EventDataReader of the event to handle.