Interface TransportManager
public interface TransportManager
A TransportManager is the core of the transport layer. It manages both: component-client
interactions and client-transport methods.
- Client-component interactions
...are interactions from a component with aMessageClient. - Client-transport methods
...are interactions from a client with a transportMethod.
ClientSessionListener can be registered in order to get notified on
certain client-transport-events.-
Method Summary
Modifier and TypeMethodDescriptionvoidRegisters aClientSessionListeneron the TransportManager.voidRemoves a previous registeredClientSessionListenerfrom the TransportManager.
-
Method Details
-
addClientSessionListener
Registers aClientSessionListeneron the TransportManager. The listener gets informed on each event.- Parameters:
listener- The listener to register.
-
removeClientSessionListener
Removes a previous registeredClientSessionListenerfrom the TransportManager.- Parameters:
listener- The listener to remove.
-