Package jetbrains.buildServer.push.impl
Class ActiveWebSocketSessions
- java.lang.Object
-
- jetbrains.buildServer.push.impl.ActiveWebSocketSessions
-
@ThreadSafe public class ActiveWebSocketSessions extends Object
-
-
Constructor Summary
Constructors Constructor Description ActiveWebSocketSessions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<WebSocketSession>
getForHttpSession(javax.servlet.http.HttpSession httpSession)
Collection<WebSocketSession>
getSessions()
void
register(WebSocketSession webSocketSession)
void
unregister(WebSocketSession webSocketSession)
-
-
-
Method Detail
-
register
public void register(@NotNull WebSocketSession webSocketSession)
-
unregister
public void unregister(@NotNull WebSocketSession webSocketSession)
-
getSessions
@NotNull public Collection<WebSocketSession> getSessions()
-
getForHttpSession
@NotNull public Collection<WebSocketSession> getForHttpSession(@NotNull javax.servlet.http.HttpSession httpSession)
-
-