Uses of Interface
jakarta.websocket.CloseReason.CloseCode
-
Packages that use CloseReason.CloseCode Package Description jakarta.faces.event jakarta.websocket This package contains all the Jakarta WebSocket APIs common to both the client and server side. -
-
Uses of CloseReason.CloseCode in jakarta.faces.event
Methods in jakarta.faces.event that return CloseReason.CloseCode Modifier and Type Method Description CloseReason.CloseCode
WebsocketEvent. getCloseCode()
Returns the close code.Constructors in jakarta.faces.event with parameters of type CloseReason.CloseCode Constructor Description WebsocketEvent(String channel, Serializable user, CloseReason.CloseCode code)
-
Uses of CloseReason.CloseCode in jakarta.websocket
Classes in jakarta.websocket that implement CloseReason.CloseCode Modifier and Type Class Description static class
CloseReason.CloseCodes
An Enumeration of status codes for a web socket close that are defined in the specification.Methods in jakarta.websocket that return CloseReason.CloseCode Modifier and Type Method Description static CloseReason.CloseCode
CloseReason.CloseCodes. getCloseCode(int code)
Creates a CloseCode from the given int code number.CloseReason.CloseCode
CloseReason. getCloseCode()
The Close code associated with this CloseReason.Constructors in jakarta.websocket with parameters of type CloseReason.CloseCode Constructor Description CloseReason(CloseReason.CloseCode closeCode, String reasonPhrase)
Creates a reason for closing a web socket connection with the given code and reason phrase.
-