Uses of Interface
org.openbandy.event.EventSink

Packages that use EventSink
org.openbandy.event   
org.openbandy.example.test   
org.openbandy.service   
 

Uses of EventSink in org.openbandy.event
 

Methods in org.openbandy.event that return EventSink
 EventSink EventFilter.getEventSinkUnfiltered()
          May return another instance of the event sink or null.
 

Methods in org.openbandy.event with parameters of type EventSink
 void EventDispatcher.addSink(EventSink eventSink, EventFilter filter)
          Put the event sink and the related event filter under this EventDispatcher's control.
 boolean EventDispatcher.removeSink(EventSink eventSink)
          Relieve an event sink from this EventDispatcher's control.
 void EventFilter.setEventSink(EventSink eventSink)
          Set the event sink that is target to this filter.
 

Uses of EventSink in org.openbandy.example.test
 

Classes in org.openbandy.example.test that implement EventSink
 class EventServiceTest
          A very simple test of the event router.
 

Uses of EventSink in org.openbandy.service
 

Methods in org.openbandy.service with parameters of type EventSink
static void EventService.subscribe(EventSink eventSink, EventFilter filter)
          This method registers an EventSink with every type of event it absorbs.
static void EventService.unsubscribe(EventSink eventSink)
          Unsubscribe an EventSink.