Package | Description |
---|---|
org.springframework.web.reactive.socket |
Abstractions and support classes for reactive WebSocket interactions.
|
org.springframework.web.reactive.socket.adapter |
Classes adapting Spring's Reactive WebSocket API to and from WebSocket runtimes.
|
Modifier and Type | Field and Description |
---|---|
static CloseStatus |
CloseStatus.BAD_DATA
"1007 indicates that an endpoint is terminating the connection because it has
received data within a message that was not consistent with the type of the message
(e.g., non-UTF-8 [RFC3629] data within a text message)."
|
static CloseStatus |
CloseStatus.GOING_AWAY
"1001 indicates that an endpoint is "going away", such as a server going down or a
browser having navigated away from a page."
|
static CloseStatus |
CloseStatus.NO_CLOSE_FRAME
"1006 is a reserved value and MUST NOT be set as a status code in a Close control
frame by an endpoint.
|
static CloseStatus |
CloseStatus.NO_STATUS_CODE
"1005 is a reserved value and MUST NOT be set as a status code in a Close control
frame by an endpoint.
|
static CloseStatus |
CloseStatus.NORMAL
"1000 indicates a normal closure, meaning that the purpose for which the connection
was established has been fulfilled."
|
static CloseStatus |
CloseStatus.NOT_ACCEPTABLE
"1003 indicates that an endpoint is terminating the connection because it has
received a type of data it cannot accept (e.g., an endpoint that understands only
text data MAY send this if it receives a binary message)."
|
static CloseStatus |
CloseStatus.POLICY_VIOLATION
"1008 indicates that an endpoint is terminating the connection because it has
received a message that violates its policy.
|
static CloseStatus |
CloseStatus.PROTOCOL_ERROR
"1002 indicates that an endpoint is terminating the connection due to a protocol
error."
|
static CloseStatus |
CloseStatus.REQUIRED_EXTENSION
"1010 indicates that an endpoint (client) is terminating the connection because it
has expected the server to negotiate one or more extension, but the server didn't
return them in the response message of the WebSocket handshake.
|
static CloseStatus |
CloseStatus.SERVER_ERROR
"1011 indicates that a server is terminating the connection because it encountered
an unexpected condition that prevented it from fulfilling the request."
|
static CloseStatus |
CloseStatus.SERVICE_OVERLOAD
"1013 indicates that the service is experiencing overload.
|
static CloseStatus |
CloseStatus.SERVICE_RESTARTED
"1012 indicates that the service is restarted.
|
static CloseStatus |
CloseStatus.TLS_HANDSHAKE_FAILURE
"1015 is a reserved value and MUST NOT be set as a status code in a Close control
frame by an endpoint.
|
static CloseStatus |
CloseStatus.TOO_BIG_TO_PROCESS
"1009 indicates that an endpoint is terminating the connection because it has
received a message that is too big for it to process."
|
Modifier and Type | Method and Description |
---|---|
CloseStatus |
CloseStatus.withReason(String reason)
Create a new
CloseStatus from this one with the specified reason. |
Modifier and Type | Method and Description |
---|---|
reactor.core.publisher.Mono<Void> |
WebSocketSession.close(CloseStatus status)
Close the WebSocket session with the given status.
|
boolean |
CloseStatus.equalsCode(CloseStatus other) |
Modifier and Type | Method and Description |
---|---|
reactor.core.publisher.Mono<Void> |
UndertowWebSocketSession.close(CloseStatus status) |
reactor.core.publisher.Mono<Void> |
ReactorNettyWebSocketSession.close(CloseStatus status) |
reactor.core.publisher.Mono<Void> |
StandardWebSocketSession.close(CloseStatus status) |
reactor.core.publisher.Mono<Void> |
JettyWebSocketSession.close(CloseStatus status) |