Interface ConnectionObjectListener
-
- All Superinterfaces:
java.util.EventListener
public interface ConnectionObjectListener extends java.util.EventListener
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classConnectionObjectListener.ListenerList
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconnectionCreated(ConnectionID connectionID)This method signals the creation of a connection with the given ID.voidconnectionDeleted(ConnectionID connectionID)This method signals the deletion of a connection with the given ID.voidconnectionUpdated(ConnectionID connectionID)This method signals that the connection with the given ID was updated.
-
-
-
Method Detail
-
connectionCreated
void connectionCreated(ConnectionID connectionID)
This method signals the creation of a connection with the given ID. For access to the actual connection, the connectionManager should be used.- Parameters:
connectionID-
-
connectionDeleted
void connectionDeleted(ConnectionID connectionID)
This method signals the deletion of a connection with the given ID. For access to the actual connection, the connectionManager should be used.- Parameters:
connectionID-
-
connectionUpdated
void connectionUpdated(ConnectionID connectionID)
This method signals that the connection with the given ID was updated. For access to the actual connection, the connectionManager should be used. Be aware, that the actual pointers to the objects connected by the Connection with the given ID are not changed. Furthermore, it is wise not to update connections too often.- Parameters:
connectionID-
-
-