Uses of Interface
net.groboclown.eventbus.v2.IEventDistributor

Packages that use IEventDistributor
net.groboclown.eventbus.v2 The eventbus package allows for a dynamic application to distribute application events in an infinitely extensible way. 
net.groboclown.eventbus.v2.rmi Access to remote event buses. 
net.groboclown.eventbus.v2.tests   
 

Uses of IEventDistributor in net.groboclown.eventbus.v2
 

Classes in net.groboclown.eventbus.v2 that implement IEventDistributor
 class LocalEventDistributor
          The default distributor - sends events asynchronously in the current thread to all listeners.
 class ThreadedLocalEventDistributor
          Sends events asynchronously in a separate event thread to all local listeners.
 

Methods in net.groboclown.eventbus.v2 with parameters of type IEventDistributor
 void EventBus.addEventDistributor(IEventDistributor ed)
           
 boolean EventBus.removeEventDistributor(IEventDistributor ed)
           
 

Uses of IEventDistributor in net.groboclown.eventbus.v2.rmi
 

Classes in net.groboclown.eventbus.v2.rmi that implement IEventDistributor
 class RemoteDistributor
          An interface for distributing events to any listeners.
 

Uses of IEventDistributor in net.groboclown.eventbus.v2.tests
 

Classes in net.groboclown.eventbus.v2.tests that implement IEventDistributor
static class TestEventBus.TestDistributor
           
 



Written under the LGPL