Home
last modified time | relevance | path

Searched refs:session (Results 26 – 30 of 30) sorted by last modified time

12

/unit/src/java/nginx/unit/websocket/
H A DWsWebSocketContainer.java1031 for (WsSession session : sessions.keySet()) { in destroy()
1033 session.close(cr); in destroy()
1036 "wsWebSocketContainer.sessionCloseFail", session.getId()), ioe); in destroy()
H A DLocalStrings.properties73 wsFrame.sessionClosed=The client data cannot be processed because the session has already been clos…
84 wsRemoteEndpoint.closed=Message will not be sent because the WebSocket session has been closed
85 …Message=The remainder of the message will not be sent because the WebSocket session has been closed
90 wsRemoteEndpoint.flushOnCloseFailed=Batched messages still enabled after session has been closed. U…
103 wsSession.timeout=The WebSocket session [{0}] timeout expired
105 …ssion.closed=The WebSocket session [{0}] has been closed and no method (apart from close()) may be…
106 wsSession.created=Created WebSocket session [{0}]
107 wsSession.doClose=Closing WebSocket session [{1}]
112 wsSession.flushFailOnClose=Failed to flush batched messages on session close
114 wsSession.sendCloseFail=Failed to send close message for session [{0}] to remote endpoint
[all …]
/unit/src/java/nginx/unit/
H A DRequest.java119 private Session session = null; field in Request
522 if (session != null) { in getSession()
526 return session; in getSession()
529 session = null; in getSession()
538 if (session != null || !create) { in getSession()
539 trace("getSession(" + create + "): " + (session != null ? session.getId() : "null")); in getSession()
541 return session; in getSession()
544 session = context.createSession(); in getSession()
554 return session; in getSession()
1244 if (session == null) { in changeSessionId()
[all …]
/unit/src/java/javax/websocket/
H A DSessionException.java23 private final Session session; field in SessionException
26 public SessionException(String message, Throwable cause, Session session) { in SessionException() argument
28 this.session = session; in SessionException()
33 return session; in getSession()
H A DEndpoint.java28 public abstract void onOpen(Session session, EndpointConfig config); in onOpen() argument
36 public void onClose(Session session, CloseReason closeReason) { in onClose() argument
46 public void onError(Session session, Throwable throwable) { in onError() argument

12