Uses of Interface
org.apache.sshd.common.util.SshdEventListener
-
-
Uses of SshdEventListener in org.apache.sshd.client.channel
Classes in org.apache.sshd.client.channel that implement SshdEventListener Modifier and Type Class Description class
ClientChannelPendingMessagesQueue
This is a specializedSshFutureListener
that is used to enqueue data that is sent while the channel is being set-up, so that when it is established it will send them in the same order as they have been received. -
Uses of SshdEventListener in org.apache.sshd.common.channel
Subinterfaces of SshdEventListener in org.apache.sshd.common.channel Modifier and Type Interface Description interface
ChannelListener
Provides a simple listener for client / server channels being established or torn down. -
Uses of SshdEventListener in org.apache.sshd.common.forward
Subinterfaces of SshdEventListener in org.apache.sshd.common.forward Modifier and Type Interface Description interface
PortForwardingEventListener
-
Uses of SshdEventListener in org.apache.sshd.common.future
Subinterfaces of SshdEventListener in org.apache.sshd.common.future Modifier and Type Interface Description interface
SshFutureListener<T extends SshFuture>
Something interested in being notified when the completion of an asynchronous SSH operation :SshFuture
. -
Uses of SshdEventListener in org.apache.sshd.common.io
Subinterfaces of SshdEventListener in org.apache.sshd.common.io Modifier and Type Interface Description interface
IoServiceEventListener
-
Uses of SshdEventListener in org.apache.sshd.common.scp
Subinterfaces of SshdEventListener in org.apache.sshd.common.scp Modifier and Type Interface Description interface
ScpTransferEventListener
Can be registered in order to receive events about SCP transfersClasses in org.apache.sshd.common.scp that implement SshdEventListener Modifier and Type Class Description class
AbstractScpTransferEventListenerAdapter
A no-op implementation ofScpTransferEventListener
for those who wish to implement only a small number of methods. -
Uses of SshdEventListener in org.apache.sshd.common.session
Subinterfaces of SshdEventListener in org.apache.sshd.common.session Modifier and Type Interface Description interface
ReservedSessionMessagesHandler
Provides a way to listen and handle theSSH_MSG_IGNORE
andSSH_MSG_DEBUG
messages that are received by a session, as well as proprietary and/or extension messages.interface
SessionListener
Represents an interface receiving session events. -
Uses of SshdEventListener in org.apache.sshd.common.session.helpers
Classes in org.apache.sshd.common.session.helpers that implement SshdEventListener Modifier and Type Class Description class
PendingWriteFuture
Future holding a packet pending key exchange termination.class
ReservedSessionMessagesHandlerAdapter
Delegates the main interface methods to specific ones after having decoded each message bufferclass
SessionTimeoutListener
Task that iterates over all currently openSession
s and checks each of them for timeouts. -
Uses of SshdEventListener in org.apache.sshd.common.util
Methods in org.apache.sshd.common.util with type parameters of type SshdEventListener Modifier and Type Method Description static <T extends SshdEventListener>
TEventListenerUtils. proxyWrapper(Class<T> listenerType, ClassLoader loader, Iterable<? extends T> listeners)
Provides proxy wrapper around anIterable
container of listener interface implementation.static <T extends SshdEventListener>
TEventListenerUtils. proxyWrapper(Class<T> listenerType, Iterable<? extends T> listeners)
Provides proxy wrapper around anIterable
container of listener interface implementation.static <L extends SshdEventListener>
Set<L>EventListenerUtils. synchronizedListenersSet()
static <L extends SshdEventListener>
Set<L>EventListenerUtils. synchronizedListenersSet(Collection<? extends L> listeners)
static <L extends SshdEventListener>
LSshdEventListener. validateListener(L listener, String prefix)
Makes sure that the listener is neithernull
nor a proxy -
Uses of SshdEventListener in org.apache.sshd.server
Subinterfaces of SshdEventListener in org.apache.sshd.server Modifier and Type Interface Description interface
SignalListener
Define a listener to receive signals -
Uses of SshdEventListener in org.apache.sshd.server.subsystem.sftp
Subinterfaces of SshdEventListener in org.apache.sshd.server.subsystem.sftp Modifier and Type Interface Description interface
SftpEventListener
Can be used register for SFTP events.Classes in org.apache.sshd.server.subsystem.sftp that implement SshdEventListener Modifier and Type Class Description class
AbstractSftpEventListenerAdapter
A no-op implementation ofSftpEventListener
for those who wish to implement only a small number of methods.
-