JavaGroups
Interface ChannelListener

All Known Implementing Classes:
RpcDispatcher

public interface ChannelListener

Allows a listener to be notified when important channel events occur. For example, when a channel is closed, a PullPushAdapter can be notified, and stop accordingly.


Method Summary
 void ChannelClosed(Channel channel)
           
 void ChannelConnected(Channel channel)
           
 void ChannelDisconnected(Channel channel)
           
 

Method Detail

ChannelConnected

public void ChannelConnected(Channel channel)

ChannelDisconnected

public void ChannelDisconnected(Channel channel)

ChannelClosed

public void ChannelClosed(Channel channel)