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 void
onChannelClose(Channel channel)
void
onChannelEOF(Channel channel)
void
onChannelOpen(Channel channel)
void
onDataReceived(Channel channel, byte[] data)
void
onDataSent(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
-
-
-