Package com.sshtools.j2ssh.forwarding
Class ForwardingConfiguration.ForwardingConfigurationMonitor
- java.lang.Object
-
- com.sshtools.j2ssh.forwarding.ForwardingConfiguration.ForwardingConfigurationMonitor
-
- All Implemented Interfaces:
ChannelEventListener
- Enclosing class:
- ForwardingConfiguration
public class ForwardingConfiguration.ForwardingConfigurationMonitor extends java.lang.Object implements ChannelEventListener
-
-
Constructor Summary
Constructors Constructor Description ForwardingConfigurationMonitor()
-
Method Summary
All Methods Instance Methods Concrete 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
public void onChannelOpen(Channel channel)
- Specified by:
onChannelOpen
in interfaceChannelEventListener
-
onChannelEOF
public void onChannelEOF(Channel channel)
- Specified by:
onChannelEOF
in interfaceChannelEventListener
-
onChannelClose
public void onChannelClose(Channel channel)
- Specified by:
onChannelClose
in interfaceChannelEventListener
-
onDataReceived
public void onDataReceived(Channel channel, byte[] data)
- Specified by:
onDataReceived
in interfaceChannelEventListener
-
onDataSent
public void onDataSent(Channel channel, byte[] data)
- Specified by:
onDataSent
in interfaceChannelEventListener
-
-