Class SessionTracker
- java.lang.Object
-
- org.eclipse.jetty.util.component.AbstractLifeCycle
-
- org.eclipse.jetty.websocket.common.SessionTracker
-
- All Implemented Interfaces:
org.eclipse.jetty.util.component.Dumpable
,org.eclipse.jetty.util.component.LifeCycle
,WebSocketSessionListener
public class SessionTracker extends org.eclipse.jetty.util.component.AbstractLifeCycle implements WebSocketSessionListener, org.eclipse.jetty.util.component.Dumpable
-
-
Constructor Summary
Constructors Constructor Description SessionTracker()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
doStop()
void
dump(java.lang.Appendable out, java.lang.String indent)
java.util.Set<WebSocketSession>
getSessions()
void
onSessionClosed(WebSocketSession session)
void
onSessionCreated(WebSocketSession session)
-
Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, doStart, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, setStopTimeout, start, stop, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.jetty.websocket.common.WebSocketSessionListener
onSessionOpened
-
-
-
-
Method Detail
-
getSessions
public java.util.Set<WebSocketSession> getSessions()
-
onSessionCreated
public void onSessionCreated(WebSocketSession session)
- Specified by:
onSessionCreated
in interfaceWebSocketSessionListener
-
onSessionClosed
public void onSessionClosed(WebSocketSession session)
- Specified by:
onSessionClosed
in interfaceWebSocketSessionListener
-
doStop
protected void doStop() throws java.lang.Exception
- Overrides:
doStop
in classorg.eclipse.jetty.util.component.AbstractLifeCycle
- Throws:
java.lang.Exception
-
dump
public void dump(java.lang.Appendable out, java.lang.String indent) throws java.io.IOException
- Specified by:
dump
in interfaceorg.eclipse.jetty.util.component.Dumpable
- Throws:
java.io.IOException
-
-