Class EventBus

java.lang.Object
com.google.web.bindery.event.shared.EventBus
Direct Known Subclasses:
CountingEventBus, EventBus, RecordingEventBus, ResettableEventBus, SimpleEventBus

public abstract class EventBus extends Object
Dispatches Events to interested parties. Eases decoupling by allowing objects to interact without having direct dependencies upon one another, and without requiring event sources to deal with maintaining handler lists. There will typically be one EventBus per application, broadcasting events that may be of general interest.
See Also: