Modifier | Constructor and Description |
---|---|
|
SimpleEventBus() |
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 (via
addHandlerToSource(com.google.web.bindery.event.shared.Event.Type<H>, java.lang.Object, H) . |
Modifier and Type | Method and Description |
---|---|
<H> HandlerRegistration |
addHandler(Event.Type<H> type,
H handler)
Adds an unfiltered handler to receive events of this type from all sources.
|
<H> HandlerRegistration |
addHandlerToSource(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> void |
doRemove(Event.Type<H> type,
java.lang.Object source,
H handler)
Deprecated.
required by legacy features in GWT's old HandlerManager
|
void |
fireEvent(Event<?> event)
Fires the event from no source.
|
void |
fireEventFromSource(Event<?> event,
java.lang.Object source)
Fires the given event to the handlers listening to the event's type.
|
protected <H> H |
getHandler(Event.Type<H> type,
int index)
Deprecated.
required by legacy features in GWT's old HandlerManager
|
protected int |
getHandlerCount(Event.Type<?> eventKey)
Deprecated.
required by legacy features in GWT's old HandlerManager
|
protected boolean |
isEventHandled(Event.Type<?> eventKey)
Deprecated.
required by legacy features in GWT's old HandlerManager
|
dispatchEvent, setSourceOfEvent
public SimpleEventBus()
@Deprecated protected SimpleEventBus(boolean fireInReverseOrder)
addHandlerToSource(com.google.web.bindery.event.shared.Event.Type<H>, java.lang.Object, H)
.public <H> HandlerRegistration addHandler(Event.Type<H> type, H handler)
EventBus
It is rare to call this method directly. More typically an Event
subclass will provide a static register
method, or a widget
will accept handlers directly.
addHandler
in class EventBus
H
- The type of handlertype
- the event type associated with this handlerhandler
- the handlerpublic <H> HandlerRegistration addHandlerToSource(Event.Type<H> type, java.lang.Object source, H handler)
EventBus
It is rare to call this method directly. More typically a Event
subclass will provide a static register
method, or a widget
will accept handlers directly.
addHandlerToSource
in class EventBus
H
- The type of handlertype
- the event type associated with this handlersource
- the source associated with this handlerhandler
- the handlerpublic void fireEvent(Event<?> event)
EventBus
Any exceptions thrown by handlers will be bundled into a
UmbrellaException
and then re-thrown after all handlers have
completed. An exception thrown by a handler will not prevent other handlers
from executing.
public void fireEventFromSource(Event<?> event, java.lang.Object source)
EventBus
Any exceptions thrown by handlers will be bundled into a
UmbrellaException
and then re-thrown after all handlers have
completed. An exception thrown by a handler will not prevent other handlers
from executing.
fireEventFromSource
in class EventBus
event
- the event to fire@Deprecated protected <H> void doRemove(Event.Type<H> type, java.lang.Object source, H handler)
@Deprecated protected <H> H getHandler(Event.Type<H> type, int index)
@Deprecated protected int getHandlerCount(Event.Type<?> eventKey)
@Deprecated protected boolean isEventHandled(Event.Type<?> eventKey)