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 SummaryAll 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- 
getConnectionIdint getConnectionId() Get the connection id.- Returns:
- The connection id.
 
 - 
getInitiatorIComponentIdentifier getInitiator() Get the initiator.- Returns:
- The initiator.
 
 - 
getParticipantIComponentIdentifier getParticipant() Get the participant.- Returns:
- The participant.
 
 - 
closevoid close() Close the connection.
 - 
getNonFunctionalPropertiesjava.util.Map<java.lang.String,java.lang.Object> getNonFunctionalProperties() Get the non-functional properties of the connection.
 
- 
 
-