|
GWT 2.2.0 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.google.gwt.event.shared.EventBus
com.google.gwt.event.shared.ResettableEventBus
public class ResettableEventBus
Wraps an EventBus to hold on to any HandlerRegistrations, so that they can easily all be cleared at once.
| Constructor Summary | |
|---|---|
ResettableEventBus(EventBus wrappedBus)
|
|
| Method Summary | ||
|---|---|---|
|
addHandler(GwtEvent.Type<H> type,
H handler)
Adds an unfiltered handler to receive events of this type from all sources. |
|
|
addHandlerToSource(GwtEvent.Type<H> type,
java.lang.Object source,
H handler)
Adds a handler to receive events of this type from the given source. |
|
void |
fireEvent(GwtEvent<?> event)
Fires the event from no source. |
|
void |
fireEventFromSource(GwtEvent<?> event,
java.lang.Object source)
Fires the given event to the handlers listening to the event's type. |
|
void |
removeHandlers()
Remove all handlers that have been added through this wrapper. |
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ResettableEventBus(EventBus wrappedBus)
| Method Detail |
|---|
public <H extends EventHandler> HandlerRegistration addHandler(GwtEvent.Type<H> type,
H handler)
EventBus
It is rare to call this method directly. More typically a GwtEvent
subclass will provide a static register method, or a widget
will accept handlers directly.
A tip: to make a handler de-register itself, the following works:
new MyHandler() {
HandlerRegistration reg = MyEvent.register(eventBus, this);
public void onMyThing(MyEvent event) {
/* do your thing */
reg.removeHandler();
}
};
addHandler in class EventBusH - The type of handlertype - the event type associated with this handlerhandler - the handler
public <H extends EventHandler> HandlerRegistration addHandlerToSource(GwtEvent.Type<H> type,
java.lang.Object source,
H handler)
EventBus
It is rare to call this method directly. More typically a GwtEvent
subclass will provide a static register method, or a widget
will accept handlers directly.
addHandlerToSource in class EventBusH - The type of handlertype - the event type associated with this handlersource - the source associated with this handlerhandler - the handler
public void fireEvent(GwtEvent<?> event)
EventBus
fireEvent in interface HasHandlersfireEvent in class EventBusevent - the event to fire
public void fireEventFromSource(GwtEvent<?> 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 EventBusevent - the event to firepublic void removeHandlers()
|
GWT 2.2.0 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||