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 Summary
All 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.void
notifyInited()
IFuture<java.lang.Void>
sendInit()
Send init message.void
setConnection(AbstractConnection con)
Set the connection (needed as connection and handler need each other).
-
-
-
Method Detail
-
setConnection
void 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.
-
sendInit
IFuture<java.lang.Void> sendInit()
Send init message.
-
notifyInited
void notifyInited()
-
doClose
IFuture<java.lang.Void> doClose()
Called from connection. Initiates closing procedure (is different for initiator and participant).
-
getNonFunctionalProperties
java.util.Map<java.lang.String,java.lang.Object> getNonFunctionalProperties()
Get the non-functional properties.- Returns:
- The non-functional properties.
-
-