Class WebsocketServerConfig

java.lang.Object
io.quarkus.vertx.http.runtime.WebsocketServerConfig

public class WebsocketServerConfig extends Object
Configure the Vert.X HTTP Server for WebSocker Server connection.
  • Field Details

    • maxFrameSize

      @ConfigItem public Optional<Integer> 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

      @ConfigItem public Optional<Integer> maxMessageSize
      The maximum WebSocket message size. Default 262144 (from HttpServerOptions of Vert.X HttpServerOptions)
  • Constructor Details

    • WebsocketServerConfig

      public WebsocketServerConfig()