| Interface | Description |
|---|---|
| Cancelable |
Implemented by events which can be canceled.
|
| EventListener<T> |
Event listeners listen to a single event type.
|
| ListenerHandle<T> |
An EvenListenerHandle is returned when an EventListener is registered in an
EventListenerList, which can then be used to unregister the event listener.
|
| Class | Description |
|---|---|
| CancelableEventBus<T extends Cancelable> |
Variant of EventBus which stops publishing events after they are canceled.
|
| DummyListenerHandle<T> |
Dummy listener handle.
|
| EventBus<T> |
Represents an event bus.
|
| EventBus.SubclassEventListener<E extends T,T> |
A wrapper for an event listener that only accepts a specific type of
event.
|
| ListenerList<T> |
Implements a list of event listeners.
|