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 Type
    Method
    Description
    void
    Indicates that a connection to the specified channel has been dropped.
    void
    Indicates that a connection to the specified channel has been established.
  • Method Details

    • connectionMade

      void connectionMade(Channel channel)
      Indicates that a connection to the specified channel has been established.
      Parameters:
      channel - The channel which has been connected.
    • connectionDropped

      void connectionDropped(Channel channel)
      Indicates that a connection to the specified channel has been dropped.
      Parameters:
      channel - The channel which has been disconnected.