Regex pattern to match the origin header sent by WebSocket clients.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.allowOriginHeader(boolean allowOriginHeader)
Whether the WebSocket client should add the Origin header to the
WebSocket handshake request.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.allowOriginHeader(String allowOriginHeader)
Whether the WebSocket client should add the Origin header to the
WebSocket handshake request.
VertxWebsocketEndpointBuilderFactory.AdvancedVertxWebsocketEndpointConsumerBuilder.basic()
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.consumeAsClient(boolean consumeAsClient)
When set to true, the consumer acts as a WebSocket client, creating
exchanges on each received WebSocket event.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.consumeAsClient(String consumeAsClient)
When set to true, the consumer acts as a WebSocket client, creating
exchanges on each received WebSocket event.
Whether the server consumer will create a message exchange when a new
WebSocket peer connects or disconnects.
Whether the server consumer will create a message exchange when a new
WebSocket peer connects or disconnects.
Headers to send in the HTTP handshake request.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.handshakeHeaders(Map values)
Headers to send in the HTTP handshake request.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.maxReconnectAttempts(int maxReconnectAttempts)
When consumeAsClient is set to true this sets the maximum number of
allowed reconnection attempts to a previously closed WebSocket.
When consumeAsClient is set to true this sets the maximum number of
allowed reconnection attempts to a previously closed WebSocket.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.originHeaderUrl(String originHeaderUrl)
The value of the Origin header that the WebSocket client should use
on the WebSocket handshake request.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.reconnectInitialDelay(int reconnectInitialDelay)
When consumeAsClient is set to true this sets the initial delay in
milliseconds before attempting to reconnect to a previously closed
WebSocket.
When consumeAsClient is set to true this sets the initial delay in
milliseconds before attempting to reconnect to a previously closed
WebSocket.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.reconnectInterval(int reconnectInterval)
When consumeAsClient is set to true this sets the interval in
milliseconds at which reconnecting to a previously closed WebSocket
occurs.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.reconnectInterval(String reconnectInterval)
When consumeAsClient is set to true this sets the interval in
milliseconds at which reconnecting to a previously closed WebSocket
occurs.
To configure security using SSLContextParameters.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.sslContextParameters(org.apache.camel.support.jsse.SSLContextParameters sslContextParameters)
To configure security using SSLContextParameters.