| Interface | Description |
|---|---|
| EventBus |
Interface defining an event bus.
|
| EventBus.ApplicationEventBus |
Interface implemented by the application scoped event bus.
|
| EventBus.SessionEventBus |
Interface implemented by the session scoped event bus.
|
| EventBus.UIEventBus |
Interface implemented by the UI scoped event bus.
|
| EventBus.ViewEventBus |
Interface implemented by the view scoped event bus.
|
| EventBusAware |
Marker super interface for beans that want to get notified of a specific type of event bus.
|
| EventBusAware.ApplicationEventBusAware |
Interface to be implemented by beans that want to get notified of the
application event bus.
|
| EventBusAware.SessionEventBusAware |
Interface to be implemented by beans that want to get notified of the
session event bus.
|
| EventBusAware.UIEventBusAware |
Interface to be implemented by beans that want to get notified of the
UI event bus.
|
| EventBusAware.ViewEventBusAware |
Interface to be implemented by beans that want to get notified of the
view event bus.
|
| EventBusListener<T> |
Interface to be implemented by listeners that want to subscribe to an
EventBus. |
| EventBusListenerMethodFilter |
A method annotated with
@EventBusListenerMethod will be invoked if it is
subscribed to the EventBus that published the Event
(or Object payload). |
| TopicFilter |
The interface defines a method to validate a given event topic
an listener topic.
|
| Class | Description |
|---|---|
| Event<T> |
A class that represents an event that has been published on an
EventBus. |
| ExactTopicFilter |
An implementation of
TopicFilter
which validates the topics with an exact match (equals). |
| HierachyTopicFilter |
An implementation of
TopicFilter
which validates the topics hierarchical. |
| NoEventBusListenerMethodFilter |
A default filter implementation which always returns true.
|
| Enum | Description |
|---|---|
| EventScope |
Enumeration of event scopes.
|
Copyright © 2017. All rights reserved.