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 voidonChannelClose(Channel channel)voidonChannelEOF(Channel channel)voidonChannelOpen(Channel channel)voidonDataReceived(Channel channel, byte[] data)voidonDataSent(Channel channel, byte[] data)
-
-
-
Method Detail
-
onChannelOpen
public void onChannelOpen(Channel channel)
- Specified by:
onChannelOpenin interfaceChannelEventListener
-
onChannelEOF
public void onChannelEOF(Channel channel)
- Specified by:
onChannelEOFin interfaceChannelEventListener
-
onChannelClose
public void onChannelClose(Channel channel)
- Specified by:
onChannelClosein interfaceChannelEventListener
-
onDataReceived
public void onDataReceived(Channel channel, byte[] data)
- Specified by:
onDataReceivedin interfaceChannelEventListener
-
onDataSent
public void onDataSent(Channel channel, byte[] data)
- Specified by:
onDataSentin interfaceChannelEventListener
-
-