public class ResettableEventBus extends EventBus
Constructor and Description |
---|
ResettableEventBus(com.google.web.bindery.event.shared.EventBus wrappedBus) |
Modifier and Type | Method and Description |
---|---|
<H> com.google.web.bindery.event.shared.HandlerRegistration |
addHandler(com.google.web.bindery.event.shared.Event.Type<H> type,
H handler)
Adds an unfiltered handler to receive events of this type from all sources.
|
<H extends EventHandler> |
addHandler(GwtEvent.Type<H> type,
H handler) |
<H> com.google.web.bindery.event.shared.HandlerRegistration |
addHandlerToSource(com.google.web.bindery.event.shared.Event.Type<H> type,
Object source,
H handler)
Adds a handler to receive events of this type from the given source.
|
<H extends EventHandler> |
addHandlerToSource(GwtEvent.Type<H> type,
Object source,
H handler) |
void |
fireEvent(com.google.web.bindery.event.shared.Event<?> event)
Fires the event from no source.
|
void |
fireEvent(GwtEvent<?> event)
Fires the given event to the handlers listening to the event's type.
|
void |
fireEventFromSource(com.google.web.bindery.event.shared.Event<?> event,
Object source)
Fires the given event to the handlers listening to the event's type.
|
void |
fireEventFromSource(GwtEvent<?> event,
Object source) |
void |
removeHandlers() |
castFireEvent, castFireEventFromSource, wrap
public ResettableEventBus(com.google.web.bindery.event.shared.EventBus wrappedBus)
public <H extends EventHandler> HandlerRegistration addHandler(GwtEvent.Type<H> type, H handler)
addHandler
in class EventBus
public <H> com.google.web.bindery.event.shared.HandlerRegistration addHandler(com.google.web.bindery.event.shared.Event.Type<H> type, H handler)
com.google.web.bindery.event.shared.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 extends EventHandler> HandlerRegistration addHandlerToSource(GwtEvent.Type<H> type, Object source, H handler)
addHandlerToSource
in class EventBus
public <H> com.google.web.bindery.event.shared.HandlerRegistration addHandlerToSource(com.google.web.bindery.event.shared.Event.Type<H> type, Object source, H handler)
com.google.web.bindery.event.shared.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(com.google.web.bindery.event.shared.Event<?> event)
com.google.web.bindery.event.shared.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 fireEvent(GwtEvent<?> event)
HasHandlers
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.
fireEvent
in interface HasHandlers
fireEvent
in class EventBus
event
- the eventpublic void fireEventFromSource(com.google.web.bindery.event.shared.Event<?> event, Object source)
com.google.web.bindery.event.shared.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 firepublic void fireEventFromSource(GwtEvent<?> event, Object source)
fireEventFromSource
in class EventBus
public void removeHandlers()
Copyright © 2018. All rights reserved.