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 void
closed(ForwardingConfiguration forward, ForwardingChannel channel)
void
dataReceived(ForwardingConfiguration forward, ForwardingChannel channel, int bytes)
void
dataSent(ForwardingConfiguration forward, ForwardingChannel channel, int bytes)
void
opened(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
-
-
-