Package reactor.netty.http.server
Interface WebsocketServerSpec
- All Superinterfaces:
WebsocketSpec
Websocket server configuration.
- Since:
- 0.9.5
- Author:
- Violeta Georgieva
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic WebsocketServerSpec.Builder
builder()
Create builder with default properties.
protocols = null
maxFramePayloadLength = 65536
handlePing = false
compress = false
compressionAllowServerNoContext = false
compressionPreferredClientNoContext = falseboolean
Returns whether the client is allowed to activateserver_no_context_takeover
.boolean
Returns whether the server prefers to activateclient_no_context_takeover
.Methods inherited from interface reactor.netty.http.websocket.WebsocketSpec
compress, handlePing, maxFramePayloadLength, protocols
-
Method Details
-
compressionAllowServerNoContext
boolean compressionAllowServerNoContext()Returns whether the client is allowed to activateserver_no_context_takeover
.- Returns:
- whether the client is allowed to activate
server_no_context_takeover
- Since:
- 1.1.14
-
compressionPreferredClientNoContext
boolean compressionPreferredClientNoContext()Returns whether the server prefers to activateclient_no_context_takeover
.- Returns:
- whether the server prefers to activate
client_no_context_takeover
- Since:
- 1.1.14
-
builder
Create builder with default properties.
protocols = null
maxFramePayloadLength = 65536
handlePing = false
compress = false
compressionAllowServerNoContext = false
compressionPreferredClientNoContext = false- Returns:
WebsocketServerSpec.Builder
-