Regex pattern to match the origin header sent by WebSocket clients.
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.
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.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.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.router(io.vertx.ext.web.Router router)
To use an existing vertx router for the HTTP server.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.router(String router)
To use an existing vertx router for the HTTP server.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.serverOptions(io.vertx.core.http.HttpServerOptions serverOptions)
Sets customized options for configuring the HTTP server hosting the
WebSocket for the consumer.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.serverOptions(String serverOptions)
Sets customized options for configuring the HTTP server hosting the
WebSocket for the consumer.
To configure security using SSLContextParameters.
VertxWebsocketEndpointBuilderFactory.VertxWebsocketEndpointConsumerBuilder.sslContextParameters(org.apache.camel.support.jsse.SSLContextParameters sslContextParameters)
To configure security using SSLContextParameters.