| Interface | Description |
|---|---|
| EventListener |
An event listener knows how to accept and process events of a particular type (or types).
|
| EventListenerResolver |
An
EventListenerResolver knows how to resolve (either create or lookup) EventListener instances
as a result of inspecting a subscriber object, mostly likely a
Subscribe-annotated object instance. |
| TypedEventListener |
| Class | Description |
|---|---|
| AnnotationEventListenerResolver |
Inspects an object for annotated methods of interest and creates an
EventListener instance for each method
discovered. |
| DefaultEventBus |
A default event bus implementation that synchronously publishes events to registered listeners.
|
| EventClassComparator |
Compares two event classes based on their position in a class hierarchy.
|
| EventListenerComparator |
Compares two event listeners to determine the order in which they should be invoked when an event is dispatched.
|
| SingleArgumentMethodEventListener |
A event listener that invokes a target object's method that accepts a single event argument.
|
Copyright © 2004–2023 The Apache Software Foundation. All rights reserved.