Package jadex.bridge
Interface IConnection
- 
- All Known Subinterfaces:
 IInputConnection,IOutputConnection
- All Known Implementing Classes:
 AbstractConnection,InputConnection,OutputConnection,ServiceInputConnection,ServiceInputConnectionProxy,ServiceOutputConnection,ServiceOutputConnectionProxy
public interface IConnectionBase interface for all Jadex connections (streams). 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Close the connection.intgetConnectionId()Get the connection id.IComponentIdentifiergetInitiator()Get the initiator.java.util.Map<java.lang.String,java.lang.Object>getNonFunctionalProperties()Get the non-functional properties of the connection.IComponentIdentifiergetParticipant()Get the participant. 
 - 
 
- 
- 
Method Detail
- 
getConnectionId
int getConnectionId()
Get the connection id.- Returns:
 - The connection id.
 
 
- 
getInitiator
IComponentIdentifier getInitiator()
Get the initiator.- Returns:
 - The initiator.
 
 
- 
getParticipant
IComponentIdentifier getParticipant()
Get the participant.- Returns:
 - The participant.
 
 
- 
close
void close()
Close the connection. 
- 
getNonFunctionalProperties
java.util.Map<java.lang.String,java.lang.Object> getNonFunctionalProperties()
Get the non-functional properties of the connection. 
 - 
 
 -