- java.lang.Object
-
- jakarta.websocket.Endpoint
-
- org.omnifaces.cdi.push.SocketEndpoint
-
-
Field Summary
Fields Modifier and Type Field Description static String
URI_TEMPLATE
The context-relative URI template where the web socket endpoint should listen on.
-
Constructor Summary
Constructors Constructor Description SocketEndpoint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onClose(Session session, CloseReason reason)
Remove given web socket session from theSocketSessionManager
.void
onError(Session session, Throwable throwable)
Delegate exception to onClose.void
onOpen(Session session, EndpointConfig config)
Add given web socket session to theSocketSessionManager
.
-
-
-
Field Detail
-
URI_TEMPLATE
public static final String URI_TEMPLATE
The context-relative URI template where the web socket endpoint should listen on.- See Also:
- Constant Field Values
-
-
Method Detail
-
onOpen
public void onOpen(Session session, EndpointConfig config)
Add given web socket session to theSocketSessionManager
. If web socket session is not accepted (i.e. the channel identifier is unknown), then immediately close with reason VIOLATED_POLICY (close code 1008).
-
onClose
public void onClose(Session session, CloseReason reason)
Remove given web socket session from theSocketSessionManager
. If there is any exception from onError which was not caused by GOING_AWAY, then log it. Tomcat <= 8.0.30 is known to throw an unnecessary exception when client abruptly disconnects, see also issue 57489.
-
-