Package io.quarkus.vertx.http.runtime
Interface WebsocketServerConfig
public interface WebsocketServerConfig
Configure the Vert.X HTTP Server for WebSocker Server connection.
-
Method Summary
Modifier and TypeMethodDescriptionThe maximum amount of data that can be sent in a single frame.The maximum WebSocket message size.
-
Method Details
-
maxFrameSize
The maximum amount of data that can be sent in a single frame.Messages larger than this must be broken up into continuation frames.
Default 65536 (from HttpServerOptions of Vert.X HttpServerOptions)
-
maxMessageSize
The maximum WebSocket message size.Default 262144 (from HttpServerOptions of Vert.X HttpServerOptions)
-