| org.objectweb.celtix.transports.TransportFactoryManager
All known Subclasses: org.objectweb.celtix.bus.transports.TransportFactoryManagerImpl,
TransportFactoryManager | public interface TransportFactoryManager (Code) | | The TransportFactoryManager provides an interface to register and retrieve
transport factories.
|
deregisterTransportFactory | void deregisterTransportFactory(String name) throws BusException(Code) | | Unregister a TransportFactory .
Parameters: name - A string containing the name of theTransportFactory . throws: BusException - If there is an error deregisteringthe transport factory. |
getTransportFactory | TransportFactory getTransportFactory(String name) throws BusException(Code) | | Returns the TransportFactory registered with the specified name,
loading the appropriate plugin if necessary.
Parameters: name - the registered TransportFactory throws: BusException - |
registerTransportFactory | void registerTransportFactory(String name, TransportFactory factory) throws BusException(Code) | | Associates a name, often a URI, with a TransportFactory
when registering with the Bus 's TransportRegistry .
Parameters: name - A string containing the name used to identify theTransportFactory Parameters: factory - The TransportFactory to be registered. throws: BusException - If there is an error registering transport factory. |
shutdown | void shutdown()(Code) | | Shuts down the TransportFactoryManager and do clean up things.
|
|
|