The timeout in ms (milliseconds) for async write operations. <p> Negative values indicate a disabled timeout.
The time in ms (milliseconds) that a websocket connection mad by idle before being closed automatically.
The size of the input (read from network layer) buffer size. <p> This is the raw read operation buffer size, before the parsing of the websocket frames.
Get the maximum size of a binary message buffer (for streaming writing)
Get the maximum size of a binary message during parsing. <p> This is a memory conservation option, memory over this limit will not be allocated by Hunt for handling binary messages. This applies to individual frames, whole message handling, and partial message handling. </p> <p> Binary messages over this maximum will result in a close code 1009 {@link StatusCode#MESSAGE_TOO_LARGE} </p>
Get the maximum size of a text message buffer (for streaming writing)
Get the maximum size of a text message during parsing. <p> This is a memory conservation option, memory over this limit will not be allocated by Hunt for handling text messages. This applies to individual frames, whole message handling, and partial message handling. </p> <p> Text messages over this maximum will result in a close code 1009 {@link StatusCode#MESSAGE_TOO_LARGE} </p>
The timeout in ms (milliseconds) for async write operations. <p> Negative values indicate a disabled timeout.
The time in ms (milliseconds) that a websocket may be idle before closing.
The size of the input (read from network layer) buffer size.
The maximum size of a binary message buffer. <p> Used ONLY for stream based binary message writing.
The maximum size of a binary message during parsing. <p> This is a memory conservation option, memory over this limit will not be allocated by Hunt for handling binary messages. This applies to individual frames, whole message handling, and partial message handling. </p> <p> Binary messages over this maximum will result in a close code 1009 {@link StatusCode#MESSAGE_TOO_LARGE} </p>
The maximum size of a text message buffer. <p> Used ONLY for stream based text message writing.
The maximum size of a text message during parsing. <p> This is a memory conservation option, memory over this limit will not be allocated by Hunt for handling text messages. This applies to individual frames, whole message handling, and partial message handling. </p> <p> Text messages over this maximum will result in a close code 1009 {@link StatusCode#MESSAGE_TOO_LARGE} </p>
Settings for WebSocket operations.