Package jadex.bridge.component.streams
Interface IAbstractConnectionHandler
- 
- All Known Subinterfaces:
- IInputConnectionHandler,- IOutputConnectionHandler
 - All Known Implementing Classes:
- AbstractConnectionHandler,- InputConnectionHandler,- LocalAbstractConnectionHandler,- LocalInputConnectionHandler,- LocalOutputConnectionHandler,- OutputConnectionHandler
 
 public interface IAbstractConnectionHandler
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description IFuture<java.lang.Void>doClose()Called from connection.java.util.Map<java.lang.String,java.lang.Object>getNonFunctionalProperties()Get the non-functional properties.voidnotifyInited()IFuture<java.lang.Void>sendInit()Send init message.voidsetConnection(AbstractConnection con)Set the connection (needed as connection and handler need each other).
 
- 
- 
- 
Method Detail- 
setConnectionvoid setConnection(AbstractConnection con) Set the connection (needed as connection and handler need each other). The connections uses this method to set itself as connection in their constructor.
 - 
sendInitIFuture<java.lang.Void> sendInit() Send init message.
 - 
notifyInitedvoid notifyInited() 
 - 
doCloseIFuture<java.lang.Void> doClose() Called from connection. Initiates closing procedure (is different for initiator and participant).
 - 
getNonFunctionalPropertiesjava.util.Map<java.lang.String,java.lang.Object> getNonFunctionalProperties() Get the non-functional properties.- Returns:
- The non-functional properties.
 
 
- 
 
-