Package | Description |
---|---|
org.eclipse.keyple.core.service.event |
Contains the necessary APIs for observing plugins and readers (used by ticketing applications).
|
Modifier and Type | Method and Description |
---|---|
PluginEvent.EventType |
PluginEvent.getEventType()
Gets the plugin event type.
|
static PluginEvent.EventType |
PluginEvent.EventType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PluginEvent.EventType[] |
PluginEvent.EventType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
PluginEvent(java.lang.String pluginName,
java.util.Set<java.lang.String> readerNames,
PluginEvent.EventType eventType)
Create a PluginEvent for multiple readers from the plugin name, multiple reader names and the
type of event.
|
PluginEvent(java.lang.String pluginName,
java.lang.String readerName,
PluginEvent.EventType eventType)
Create a PluginEvent for a single reader from the plugin and reader names and the type of
event.
|