Package org.eclipse.remote.core
Interface IRemoteConnectionChangeListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
TelnetConnection
public interface IRemoteConnectionChangeListener extends EventListener
Listener used to register for notification of connection status changes. Listeners can be registered on individual connections usingIRemoteConnection.addConnectionChangeListener(IRemoteConnectionChangeListener), or globally for all connections usingIRemoteServicesManager.addRemoteConnectionChangeListener(IRemoteConnectionChangeListener).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconnectionChanged(RemoteConnectionChangeEvent event)Notifies this listener that the status of a connection has changed.
-
-
-
Method Detail
-
connectionChanged
void connectionChanged(RemoteConnectionChangeEvent event)
Notifies this listener that the status of a connection has changed.- Parameters:
event- the connection change event- Since:
- 2.0
-
-