SSHChannelClosed Event
Fired when a channel is closed.
Syntax
public void fireSSHChannelClosed(SshdaemonSSHChannelClosedEvent event); public class SshdaemonSSHChannelClosedEvent { public String connectionId; public String channelId; }
Remarks
The SSHChannelClosed event is fired when a channel is closed on an SSH connection.
ConnectionId identifies the connection. ChannelId identifies the channel.
Note: Processing long-running requests, including sending channel data, inside this event may cause the underlying transport to stop processing SSH data until the event returns. In order to prevent this from happening, all requests should be processed asynchronously in a separate thread outside of this event.