Class SimpleEventBus
- java.lang.Object
-
- com.google.web.bindery.event.shared.EventBus
-
- com.google.web.bindery.event.shared.SimpleEventBus
-
-
Constructor Summary
Constructors Modifier Constructor Description SimpleEventBus()protectedSimpleEventBus(boolean fireInReverseOrder)Deprecated.This is a legacy feature, required by GWT's old HandlerManager.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <H> HandlerRegistrationaddHandler(Event.Type<H> type, H handler)Adds an unfiltered handler to receive events of this type from all sources.<H> HandlerRegistrationaddHandlerToSource(Event.Type<H> type, java.lang.Object source, H handler)Adds a handler to receive events of this type from the given source.protected <H> voiddoRemove(Event.Type<H> type, java.lang.Object source, H handler)Deprecated.required by legacy features in GWT's old HandlerManagervoidfireEvent(Event<?> event)Fires the event from no source.voidfireEventFromSource(Event<?> event, java.lang.Object source)Fires the given event to the handlers listening to the event's type.protected <H> HgetHandler(Event.Type<H> type, int index)Deprecated.required by legacy features in GWT's old HandlerManagerprotected intgetHandlerCount(Event.Type<?> eventKey)Deprecated.required by legacy features in GWT's old HandlerManagerprotected booleanisEventHandled(Event.Type<?> eventKey)Deprecated.required by legacy features in GWT's old HandlerManager-
Methods inherited from class com.google.web.bindery.event.shared.EventBus
dispatchEvent, setSourceOfEvent
-
-
-
-
Constructor Detail
-
SimpleEventBus
public SimpleEventBus()
-
SimpleEventBus
@Deprecated protected SimpleEventBus(boolean fireInReverseOrder)
Deprecated.This is a legacy feature, required by GWT's old HandlerManager. Reverse order is not honored for handlers tied to a specific event source (viaaddHandlerToSource(com.google.web.bindery.event.shared.Event.Type<H>, java.lang.Object, H).Allows creation of an instance that fires its handlers in the reverse of the order in which they were added, although filtered handlers all fire before unfiltered handlers.
-
-
Method Detail
-
addHandler
public <H> HandlerRegistration addHandler(Event.Type<H> type, H handler)
Description copied from class:EventBusAdds an unfiltered handler to receive events of this type from all sources.It is rare to call this method directly. More typically an
Eventsubclass will provide a staticregistermethod, or a widget will accept handlers directly.- Specified by:
addHandlerin classEventBus- Type Parameters:
H- The type of handler- Parameters:
type- the event type associated with this handlerhandler- the handler- Returns:
- the handler registration, can be stored in order to remove the handler later
-
addHandlerToSource
public <H> HandlerRegistration addHandlerToSource(Event.Type<H> type, java.lang.Object source, H handler)
Description copied from class:EventBusAdds a handler to receive events of this type from the given source.It is rare to call this method directly. More typically a
Eventsubclass will provide a staticregistermethod, or a widget will accept handlers directly.- Specified by:
addHandlerToSourcein classEventBus- Type Parameters:
H- The type of handler- Parameters:
type- the event type associated with this handlersource- the source associated with this handlerhandler- the handler- Returns:
- the handler registration, can be stored in order to remove the handler later
-
fireEvent
public void fireEvent(Event<?> event)
Description copied from class:EventBusFires the event from no source. Only unfiltered handlers will receive it.Any exceptions thrown by handlers will be bundled into a
UmbrellaExceptionand then re-thrown after all handlers have completed. An exception thrown by a handler will not prevent other handlers from executing.
-
fireEventFromSource
public void fireEventFromSource(Event<?> event, java.lang.Object source)
Description copied from class:EventBusFires the given event to the handlers listening to the event's type.Any exceptions thrown by handlers will be bundled into a
UmbrellaExceptionand then re-thrown after all handlers have completed. An exception thrown by a handler will not prevent other handlers from executing.- Specified by:
fireEventFromSourcein classEventBus- Parameters:
event- the event to fire
-
doRemove
@Deprecated protected <H> void doRemove(Event.Type<H> type, java.lang.Object source, H handler)
Deprecated.required by legacy features in GWT's old HandlerManager
-
getHandler
@Deprecated protected <H> H getHandler(Event.Type<H> type, int index)
Deprecated.required by legacy features in GWT's old HandlerManager
-
getHandlerCount
@Deprecated protected int getHandlerCount(Event.Type<?> eventKey)
Deprecated.required by legacy features in GWT's old HandlerManager
-
isEventHandled
@Deprecated protected boolean isEventHandled(Event.Type<?> eventKey)
Deprecated.required by legacy features in GWT's old HandlerManager
-
-