Uses of Interface
org.xwiki.observation.event.Event

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> 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 AbstractThreadEventListener.onEvent(Event event, Object source, Object data)
           
 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().
protected abstract  void AbstractThreadEventListener.onEventInternal(Event event, Object source, Object data)
          Called when the event has been produce by the proper Thread.
protected  void WrappedThreadEventListener.onEventInternal(Event event, Object source, Object data)
           
 void ObservationManager.removeEvent(String listenerName, Event event)
          Removes an Event to an already registered listener.
 

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 CancelableEvent
          This event can be canceled by the receiver.
 interface EndEvent
          Implemented by event indicating some task 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.
 



Copyright © 2004-2012 XWiki. All Rights Reserved.