|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Event | |
|---|---|
| org.xwiki.observation | |
| org.xwiki.observation.event | |
| Uses of Event in org.xwiki.observation |
|---|
| Methods in org.xwiki.observation that return types with arguments of type Event | |
|---|---|
List<Event> |
AbstractEventListener.getEvents()
|
List<Event> |
WrappedThreadEventListener.getEvents()
|
List<Event> |
EventListener.getEvents()
|
| Methods in org.xwiki.observation with parameters of type Event | |
|---|---|
void |
ObservationManager.addEvent(String listenerName,
Event event)
Adds an Event to an already registered listener. |
void |
ObservationManager.notify(Event event,
Object source)
Convenience front-end where the additional data parameter is null. |
void |
ObservationManager.notify(Event event,
Object source,
Object data)
Call the registered listeners matching the passed Event. |
void |
EventListener.onEvent(Event event,
Object source,
Object data)
The ObservationManager calls this method when an event matches one of the events
for which this listener is registered (see EventListener.getEvents(). |
void |
AbstractThreadEventListener.onEvent(Event event,
Object source,
Object data)
|
protected void |
WrappedThreadEventListener.onEventInternal(Event event,
Object source,
Object data)
|
protected abstract void |
AbstractThreadEventListener.onEventInternal(Event event,
Object source,
Object data)
Called when the event has been produce by the proper Thread. |
void |
ObservationManager.removeEvent(String listenerName,
Event event)
Removes an Event to an already registered listener. |
| Constructors in org.xwiki.observation with parameters of type Event | |
|---|---|
AbstractEventListener(String name,
Event... events)
|
|
| Constructor parameters in org.xwiki.observation with type arguments of type Event | |
|---|---|
AbstractEventListener(String name,
List<Event> events)
|
|
| Uses of Event in org.xwiki.observation.event |
|---|
| Subinterfaces of Event in org.xwiki.observation.event | |
|---|---|
interface |
BeginEvent
Implemented by event indicating some task is starting. |
interface |
BeginFoldEvent
Implemented by event indicating a task which generates other events during its process is starting. |
interface |
CancelableEvent
This event can be canceled by the receiver. |
interface |
EndEvent
Implemented by event indicating some task is stopping. |
interface |
EndFoldEvent
Implemented by event indicating the process which generates other events during its process is stopping. |
interface |
FilterableEvent
An Event that supports EventFilters. |
| Classes in org.xwiki.observation.event that implement Event | |
|---|---|
class |
AbstractCancelableEvent
Abstract base class for cancelable events. |
class |
AbstractFilterableEvent
A generic Event implementation to extend for all Events that want to support EventFilters. |
class |
ActionExecutionEvent
An event triggered whenever a client request (action) is processed, like /upload/ or /view/. |
class |
AllEvent
Special event matcher used by a listener which need to listened to all possible events. |
class |
ApplicationStartedEvent
An event triggered when the XWiki application is started. |
class |
ApplicationStoppedEvent
An event triggered when the XWiki application is stopped. |
| Fields in org.xwiki.observation.event declared as Event | |
|---|---|
static Event |
AllEvent.ALLEVENT
Unique instance of the event matcher. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||