Interface WebsocketServerConfig


public interface WebsocketServerConfig
Configure the Vert.X HTTP Server for WebSocker Server connection.
  • Method Details

    • maxFrameSize

      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

      Optional<Integer> maxMessageSize()
      The maximum WebSocket message size.

      Default 262144 (from HttpServerOptions of Vert.X HttpServerOptions)