Sets the heartbeat configuration.
Sets the max body length accepted by the server. 10 Mb by default.
Sets the maximum number of frame that can be added in a transaction. If the number of frame added to a
transaction exceeds this threshold, the client receives an ERROR
frame and is disconnected. The default
is 1000.
Sets the max header length.
Sets the maximum number of headers. 1000 by default.
Sets the maximum of subscriptions a client is allowed to register. If a client exceeds this number, it receives an error and the connection is closed.
Sets the port on which the server is going to listen for TCP connection.
Sets the STOMP protocol versions supported by the server. Versions must be given in the decreasing order.
Sets the time factor.
Sets the chunk size when replaying a transaction. To avoid blocking the event loop for too long, large transactions are split into chunks, replayed one by one. This settings sets the chunk size.
Sets the websocket path. Only frames received on this path would be considered as STOMP frame.
Enables or disables the server security feature. It requires an {@link AuthenticationProvider} handler.
Sets whether or not an error is sent to the client when this client sends a message to an not subscribed destinations (no subscriptions on this destination).
Sets whether or not an empty line should be appended to the written STOMP frame. This option is disabled by default. This option is not compliant with the STOMP specification, and so is not documented on purpose.
Enables or disables the web socket bridge.
Sets the heartbeat configuration.
Sets the max body length accepted by the server. 10 Mb by default.
Sets the maximum number of frame that can be added in a transaction. If the number of frame added to a
transaction exceeds this threshold, the client receives an ERROR
frame and is disconnected. The default
is 1000.
Sets the max header length.
Sets the maximum number of headers. 1000 by default.
Sets the maximum of subscriptions a client is allowed to register. If a client exceeds this number, it receives an error and the connection is closed.
Sets the port on which the server is going to listen for TCP connection.
Enables or disables the server security feature. It requires an {@link AuthenticationProvider} handler.
Sets whether or not an error is sent to the client when this client sends a message to an not subscribed destinations (no subscriptions on this destination).
Sets the STOMP protocol versions supported by the server. Versions must be given in the decreasing order.
Sets the time factor.
Sets whether or not an empty line should be appended to the written STOMP frame. This option is disabled by default. This option is not compliant with the STOMP specification, and so is not documented on purpose.
Sets the chunk size when replaying a transaction. To avoid blocking the event loop for too long, large transactions are split into chunks, replayed one by one. This settings sets the chunk size.
Enables or disables the web socket bridge.
Sets the websocket path. Only frames received on this path would be considered as STOMP frame.
Generated using TypeDoc
STOMP Server options. You can also configure the Net Server used by the STOMP server from these options.