Uses of Interface
org.apache.sshd.common.session.SessionListener
-
Packages that use SessionListener Package Description org.apache.sshd.common.helpers org.apache.sshd.common.session org.apache.sshd.common.session.helpers -
-
Uses of SessionListener in org.apache.sshd.common.helpers
Fields in org.apache.sshd.common.helpers declared as SessionListener Modifier and Type Field Description protected SessionListener
AbstractFactoryManager. sessionListenerProxy
Fields in org.apache.sshd.common.helpers with type parameters of type SessionListener Modifier and Type Field Description protected java.util.Collection<SessionListener>
AbstractFactoryManager. sessionListeners
Methods in org.apache.sshd.common.helpers that return SessionListener Modifier and Type Method Description SessionListener
AbstractFactoryManager. getSessionListenerProxy()
Methods in org.apache.sshd.common.helpers with parameters of type SessionListener Modifier and Type Method Description void
AbstractFactoryManager. addSessionListener(SessionListener listener)
void
AbstractFactoryManager. removeSessionListener(SessionListener listener)
-
Uses of SessionListener in org.apache.sshd.common.session
Methods in org.apache.sshd.common.session with type parameters of type SessionListener Modifier and Type Method Description static <L extends SessionListener>
LSessionListener. validateListener(L listener)
Methods in org.apache.sshd.common.session that return SessionListener Modifier and Type Method Description SessionListener
SessionListenerManager. getSessionListenerProxy()
Methods in org.apache.sshd.common.session with parameters of type SessionListener Modifier and Type Method Description void
SessionListenerManager. addSessionListener(SessionListener listener)
Add a session listener.void
SessionListenerManager. removeSessionListener(SessionListener listener)
Remove a session listener. -
Uses of SessionListener in org.apache.sshd.common.session.helpers
Classes in org.apache.sshd.common.session.helpers that implement SessionListener Modifier and Type Class Description class
SessionTimeoutListener
Task that iterates over all currently openSession
s and checks each of them for timeouts.Fields in org.apache.sshd.common.session.helpers declared as SessionListener Modifier and Type Field Description protected SessionListener
AbstractSession. sessionListenerProxy
Fields in org.apache.sshd.common.session.helpers with type parameters of type SessionListener Modifier and Type Field Description protected java.util.Collection<SessionListener>
AbstractSession. sessionListeners
Session listeners containerMethods in org.apache.sshd.common.session.helpers that return SessionListener Modifier and Type Method Description SessionListener
AbstractSession. getSessionListenerProxy()
Methods in org.apache.sshd.common.session.helpers with parameters of type SessionListener Modifier and Type Method Description void
AbstractSession. addSessionListener(SessionListener listener)
void
AbstractSession. removeSessionListener(SessionListener listener)
protected void
SessionHelper. signalDisconnect(SessionListener listener, int code, java.lang.String msg, java.lang.String lang, boolean initiator)
protected void
SessionHelper. signalExceptionCaught(SessionListener listener, java.lang.Throwable t)
protected void
SessionHelper. signalNegotiationEnd(SessionListener listener, java.util.Map<KexProposalOption,java.lang.String> c2sOptions, java.util.Map<KexProposalOption,java.lang.String> s2cOptions, java.util.Map<KexProposalOption,java.lang.String> negotiatedGuess, java.lang.Throwable reason)
protected void
SessionHelper. signalNegotiationStart(SessionListener listener, java.util.Map<KexProposalOption,java.lang.String> c2sOptions, java.util.Map<KexProposalOption,java.lang.String> s2cOptions)
protected void
SessionHelper. signalPeerIdentificationReceived(SessionListener listener, java.lang.String version, java.util.List<java.lang.String> extraLines)
protected void
SessionHelper. signalSessionClosed(SessionListener listener)
protected void
SessionHelper. signalSessionCreated(SessionListener listener)
protected void
SessionHelper. signalSessionEstablished(SessionListener listener)
protected void
SessionHelper. signalSessionEvent(SessionListener listener, SessionListener.Event event)
Method parameters in org.apache.sshd.common.session.helpers with type arguments of type SessionListener Modifier and Type Method Description protected void
SessionHelper. invokeSessionSignaller(Invoker<SessionListener,java.lang.Void> invoker)
-