Celtix User APIs

Uses of Class
org.objectweb.celtix.BusException

Packages that use BusException
org.objectweb.celtix   
org.objectweb.celtix.bindings   
org.objectweb.celtix.handlers   
org.objectweb.celtix.transports   
 

Uses of BusException in org.objectweb.celtix
 

Methods in org.objectweb.celtix that throw BusException
static Bus Bus.init()
          Returns a newly created and fully initialised Bus.
static Bus Bus.init(String[] args)
          Returns a newly created and fully initialised Bus.
static Bus Bus.init(String[] args, Map<String,Object> properties)
          Returns a newly created and fully initialised Bus.
static Bus Bus.init(String[] args, Map<String,Object> properties, ClassLoader classLoader)
          Returns a newly created and fully initialised Bus.
abstract  void Bus.initialize(String[] args, Map<String,Object> properties)
           
abstract  void Bus.shutdown(boolean wait)
          Shuts down the Bus.
 

Uses of BusException in org.objectweb.celtix.bindings
 

Methods in org.objectweb.celtix.bindings that throw BusException
 void BindingManager.deregisterBinding(String name)
          Deregisters the BindingFactory with the provided name.
 BindingFactory BindingManager.getBindingFactory(String name)
          Retrieves the BindingFactory registered with the given name.
 void BindingManager.registerBinding(String name, BindingFactory binding)
          Registers a BindingFactory using the provided name.
 

Uses of BusException in org.objectweb.celtix.handlers
 

Methods in org.objectweb.celtix.handlers that throw BusException
 void HandlerFactoryManager.deregisterHandlerFactory(HandlerFactory factory)
          Deregisters a HandlerFactory from the bus.
 void HandlerFactoryManager.registerHandlerFactory(HandlerFactory factory)
          Registers a HandlerFactory with the bus.
 

Uses of BusException in org.objectweb.celtix.transports
 

Methods in org.objectweb.celtix.transports that throw BusException
 void TransportFactoryManager.deregisterTransportFactory(String name)
          Unregister a TransportFactory.
 TransportFactory TransportFactoryManager.getTransportFactory(String name)
          Returns the TransportFactory registered with the specified name, loading the appropriate plugin if necessary.
 void TransportFactoryManager.registerTransportFactory(String name, TransportFactory factory)
          Associates a name, often a URI, with a TransportFactory when registering with the Bus's TransportRegistry.
 


Celtix User APIs