Package xal.ca
Interface ConnectionListener
- All Known Implementing Classes:
BatchConnectionRequest.RequestHandler,BatchConnectionTest.ConnectionMonitor,ChannelGroup.ConnectionHandler,ChannelWrapper.ConnectionHandler,MonitorCache.ConnectionEventHandler,ScadaCheckConnect.ConnectionMonitor
public interface ConnectionListener
ConnectionListener is an interface for channel connection events.
- Author:
- tap
-
Method Summary
Modifier and TypeMethodDescriptionvoidconnectionDropped(Channel channel) Indicates that a connection to the specified channel has been dropped.voidconnectionMade(Channel channel) Indicates that a connection to the specified channel has been established.
-
Method Details
-
connectionMade
Indicates that a connection to the specified channel has been established.- Parameters:
channel- The channel which has been connected.
-
connectionDropped
Indicates that a connection to the specified channel has been dropped.- Parameters:
channel- The channel which has been disconnected.
-