Uses of Class
io.netty5.handler.codec.http.websocketx.WebSocketCloseStatus
-
Packages that use WebSocketCloseStatus Package Description io.netty5.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames. -
-
Uses of WebSocketCloseStatus in io.netty5.handler.codec.http.websocketx
Methods in io.netty5.handler.codec.http.websocketx that return WebSocketCloseStatus Modifier and Type Method Description WebSocketCloseStatus
CorruptedWebSocketFrameException. closeStatus()
WebSocketCloseStatus
WebSocketClientProtocolConfig. sendCloseFrame()
WebSocketCloseStatus
WebSocketServerProtocolConfig. sendCloseFrame()
static WebSocketCloseStatus
WebSocketCloseStatus. valueOf(int code)
Methods in io.netty5.handler.codec.http.websocketx with parameters of type WebSocketCloseStatus Modifier and Type Method Description int
WebSocketCloseStatus. compareTo(WebSocketCloseStatus o)
Order ofWebSocketCloseStatus
only depends oncode()
.WebSocketClientProtocolConfig.Builder
WebSocketClientProtocolConfig.Builder. sendCloseFrame(WebSocketCloseStatus sendCloseFrame)
Close frame to send, when close frame was not send manually.WebSocketServerProtocolConfig.Builder
WebSocketServerProtocolConfig.Builder. sendCloseFrame(WebSocketCloseStatus sendCloseFrame)
Close frame to send, when close frame was not send manually.Constructors in io.netty5.handler.codec.http.websocketx with parameters of type WebSocketCloseStatus Constructor Description CloseWebSocketFrame(BufferAllocator allocator, WebSocketCloseStatus status)
Creates a new empty close frame with closing status code and reason textCloseWebSocketFrame(BufferAllocator allocator, WebSocketCloseStatus status, String reasonText)
Creates a new empty close frame with closing status code and reason textCorruptedWebSocketFrameException(WebSocketCloseStatus status, String message)
Creates a new instance.CorruptedWebSocketFrameException(WebSocketCloseStatus status, String message, Throwable cause)
Creates a new instance.CorruptedWebSocketFrameException(WebSocketCloseStatus status, Throwable cause)
Creates a new instance.
-