com.maverick.sshd
Interface ChannelEventListener

All Known Implementing Classes:
ChannelEventAdapter

public interface ChannelEventListener

Interface for receiving Channel events (currently only supports the close event).

Author:
Lee David Painter

Method Summary
 void onChannelClose(Channel channel)
          The channel has been closed
 void onChannelClosing(Channel channel)
          The channel is closing, but has not sent its SSH_MSG_CHANNEL_CLOSE
 void onChannelEOF(Channel channel)
          The channel has received an EOF from the remote client
 void onChannelOpen(Channel channel)
          The channel has been opened.
 

Method Detail

onChannelOpen

public void onChannelOpen(Channel channel)
The channel has been opened.

Parameters:
channel -

onChannelClose

public void onChannelClose(Channel channel)
The channel has been closed

Parameters:
channel -

onChannelEOF

public void onChannelEOF(Channel channel)
The channel has received an EOF from the remote client

Parameters:
channel -

onChannelClosing

public void onChannelClosing(Channel channel)
The channel is closing, but has not sent its SSH_MSG_CHANNEL_CLOSE

Parameters:
channel - Channel


Copyright © 2003-2008 SSHTools LTD. All Rights Reserved.