public interface WrapperEventListener
Modifier and Type | Field and Description |
---|---|
static long |
EVENT_FLAG_CONTROL
Enabling control events will cause the listener to receive
WrapperControlEvents.
|
static long |
EVENT_FLAG_CORE
Enabling core events will cause the listener to receive
WrapperCoreEvents.
|
static long |
EVENT_FLAG_LOGGING
Enabling logging events will cause the listener to receive
WrapperLoggingEvents.
|
static long |
EVENT_FLAG_REMOTE_CONTROL
Enabling remoteControl events will cause the listener to receive
WrapperRemoteControlEvents.
|
static long |
EVENT_FLAG_SERVICE
Enabling service events will cause the listener to receive
WrapperServiceEvents.
|
Modifier and Type | Method and Description |
---|---|
void |
fired(WrapperEvent event)
Called whenever a WrapperEvent is fired.
|
static final long EVENT_FLAG_SERVICE
static final long EVENT_FLAG_CONTROL
static final long EVENT_FLAG_LOGGING
static final long EVENT_FLAG_REMOTE_CONTROL
WARNING - Those events should be handled carefully as they may be originally triggered by unauthenticated sources.
static final long EVENT_FLAG_CORE
WARNING - Great care should be taken when receiving events of this type. They are sent from within the Wrapper's internal timing thread. If the listner takes too much time working with the event, Wrapper performance could be adversely affected. If unsure, it is recommended that events of this type not be included.
void fired(WrapperEvent event)
Listener implementations should never assume that they will only receive events of a particular type. To assure that events added to future versions of the Wrapper do not cause problems with user code, events should always be tested with "if ( event instanceof {EventClass} )" before casting it to a specific event type.
event
- WrapperEvent which was fired.Copyright 1999, 2024 Tanuki Software Inc., All Rights Reserved.