Package com.sshtools.j2ssh.connection
Class ChannelEventAdapter
java.lang.Object
com.sshtools.j2ssh.connection.ChannelEventAdapter
- All Implemented Interfaces:
ChannelEventListener
- Direct Known Subclasses:
DataNotificationListener
Title:
Description:
Copyright: Copyright (c) 2003
Company:
- Version:
- $Id: ChannelEventAdapter.java,v 1.8 2003/09/11 15:35:06 martianx Exp $
- Author:
- Lee David Painter
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
onChannelClose
(Channel channel) void
onChannelEOF
(Channel channel) void
onChannelOpen
(Channel channel) void
onDataReceived
(Channel channel, byte[] data) void
onDataSent
(Channel channel, byte[] data)
-
Constructor Details
-
ChannelEventAdapter
public ChannelEventAdapter()Creates a new ChannelEventAdapter object.
-
-
Method Details
-
onChannelOpen
- Specified by:
onChannelOpen
in interfaceChannelEventListener
- Parameters:
channel
-
-
onChannelEOF
- Specified by:
onChannelEOF
in interfaceChannelEventListener
- Parameters:
channel
-
-
onChannelClose
- Specified by:
onChannelClose
in interfaceChannelEventListener
- Parameters:
channel
-
-
onDataReceived
- Specified by:
onDataReceived
in interfaceChannelEventListener
- Parameters:
channel
-data
-
-
onDataSent
- Specified by:
onDataSent
in interfaceChannelEventListener
- Parameters:
channel
-data
-
-