Package com.sshtools.j2ssh.connection
Interface ChannelEventListener
-
- All Known Implementing Classes:
ChannelEventAdapter,DataNotificationListener,ForwardingConfiguration.ForwardingConfigurationMonitor
public interface ChannelEventListener- Version:
- $Revision: 1.16 $
- Author:
- $author$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonChannelClose(Channel channel)voidonChannelEOF(Channel channel)voidonChannelOpen(Channel channel)voidonDataReceived(Channel channel, byte[] data)voidonDataSent(Channel channel, byte[] data)
-
-
-
Method Detail
-
onChannelOpen
void onChannelOpen(Channel channel)
- Parameters:
channel-
-
onChannelEOF
void onChannelEOF(Channel channel)
- Parameters:
channel-
-
onChannelClose
void onChannelClose(Channel channel)
- Parameters:
channel-
-
onDataReceived
void onDataReceived(Channel channel, byte[] data)
- Parameters:
channel-data-
-
onDataSent
void onDataSent(Channel channel, byte[] data)
- Parameters:
channel-data-
-
-