Uses of Interface
uk.org.ogsadai.sessions.SessionListener

Packages that use SessionListener
uk.org.ogsadai.sessions Contains the core classes and interfaces used to support sessions. 
uk.org.ogsadai.sessions.impl Contains implementations of the sessions interfaces to provide support for transient sessions. 
 

Uses of SessionListener in uk.org.ogsadai.sessions
 

Classes in uk.org.ogsadai.sessions that implement SessionListener
 class SessionEventDispatcher
          A thread-safe class for dispatching session events to a collection of session listeners.
 

Methods in uk.org.ogsadai.sessions with parameters of type SessionListener
 void InternalSession.addSessionListener(SessionListener listener)
          Registers a session listener with the session.
 void SessionEventDispatcher.addSessionListener(SessionListener listener)
          Registers a session listener which will be notified of subsequent session events.
 

Uses of SessionListener in uk.org.ogsadai.sessions.impl
 

Classes in uk.org.ogsadai.sessions.impl that implement SessionListener
 class SessionTerminator
          A session listener that starts an expiry timer whenever the session has no participants.
 

Methods in uk.org.ogsadai.sessions.impl that return SessionListener
(package private)  SessionListener ExplicitSessionStrategy.createSessionListener(SessionManager manager)
          Creates a SessionListener that will automatically terminate the session when the last session participant leaves.
(package private)  SessionListener ImplicitSessionStrategy.createSessionListener(SessionManager manager)
          Creates a SessionListener that will automatically terminate the session when the last session participant leaves.
(package private)  SessionListener TerminateSessionStrategy.createSessionListener(SessionManager manager)
          Creates a SessionListener that will automatically terminate the session when the last session participant leaves.
 

Methods in uk.org.ogsadai.sessions.impl with parameters of type SessionListener
 void TransientInternalSession.addSessionListener(SessionListener listener)