Interface NotificationEventBus
public interface NotificationEventBus
This event bus is used to propagate notification events regarding errors and information
messages. These messages can received by listening to this event bus and displayed to the user in
a notification window and the like.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescription<H> com.google.web.bindery.event.shared.HandlerRegistrationaddHandler(com.google.web.bindery.event.shared.Event.Type<H> type, H handler) <H> com.google.web.bindery.event.shared.HandlerRegistrationaddHandlerToSource(com.google.web.bindery.event.shared.Event.Type<H> type, Object source, H handler) voidfireEvent(com.google.web.bindery.event.shared.Event<?> event) voidfireEventFromSource(com.google.web.bindery.event.shared.Event<?> event, Object source)
-
Method Details