Package com.sun.faces.push
Class WebsocketEndpoint
- java.lang.Object
-
- jakarta.websocket.Endpoint
-
- com.sun.faces.push.WebsocketEndpoint
-
public class WebsocketEndpoint extends jakarta.websocket.EndpointThis web socket server endpoint handles web socket requests coming from
<f:websocket>.- Since:
- 2.3
- Author:
- Bauke Scholtz
- See Also:
Push
-
-
Field Summary
Fields Modifier and Type Field Description static StringURI_TEMPLATEThe context-relative URI template where the web socket endpoint should listen on.
-
Constructor Summary
Constructors Constructor Description WebsocketEndpoint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonClose(jakarta.websocket.Session session, jakarta.websocket.CloseReason reason)Remove given web socket session from theWebsocketSessionManager.voidonError(jakarta.websocket.Session session, Throwable throwable)Delegate exception to onClose.voidonOpen(jakarta.websocket.Session session, jakarta.websocket.EndpointConfig config)Add given web socket session to theWebocketSessionManager.
-
-
-
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(jakarta.websocket.Session session, jakarta.websocket.EndpointConfig config)Add given web socket session to theWebocketSessionManager. If web socket session is not accepted (i.e. the channel identifier is unknown), then immediately close with reasonVIOLATED_POLICY(close code 1008).- Specified by:
onOpenin classjakarta.websocket.Endpoint- Parameters:
session- The opened web socket session.config- The endpoint configuration.
-
onError
public void onError(jakarta.websocket.Session session, Throwable throwable)Delegate exception to onClose.- Overrides:
onErrorin classjakarta.websocket.Endpoint- Parameters:
session- The errored web socket session.throwable- The cause.
-
onClose
public void onClose(jakarta.websocket.Session session, jakarta.websocket.CloseReason reason)Remove given web socket session from theWebsocketSessionManager. 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.- Overrides:
onClosein classjakarta.websocket.Endpoint- Parameters:
session- The closed web socket session.reason- The close reason.
-
-