Package com.sshtools.j2ssh.forwarding
Interface ForwardingConfigurationListener
-
- All Superinterfaces:
java.util.EventListener
public interface ForwardingConfigurationListener extends java.util.EventListener- Version:
- $Revision: 1.16 $
- Author:
- $author$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclosed(ForwardingConfiguration forward, ForwardingChannel channel)voiddataReceived(ForwardingConfiguration forward, ForwardingChannel channel, int bytes)voiddataSent(ForwardingConfiguration forward, ForwardingChannel channel, int bytes)voidopened(ForwardingConfiguration forward, ForwardingChannel channel)
-
-
-
Method Detail
-
opened
void opened(ForwardingConfiguration forward, ForwardingChannel channel)
- Parameters:
channel-
-
closed
void closed(ForwardingConfiguration forward, ForwardingChannel channel)
- Parameters:
channel-
-
dataReceived
void dataReceived(ForwardingConfiguration forward, ForwardingChannel channel, int bytes)
- Parameters:
channel-bytes-
-
dataSent
void dataSent(ForwardingConfiguration forward, ForwardingChannel channel, int bytes)
- Parameters:
channel-bytes-
-
-