public static interface WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder
extends org.apache.camel.builder.EndpointProducerBuilder
| Modifier and Type | Method and Description |
|---|---|
default WebsocketEndpointBuilderFactory.WebsocketEndpointProducerBuilder |
basic() |
default WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder |
bufferSize(Integer bufferSize)
Set the buffer size of the websocketServlet, which is also the max
frame byte size (default 8192).
|
default WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder |
bufferSize(String bufferSize)
Set the buffer size of the websocketServlet, which is also the max
frame byte size (default 8192).
|
default WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder |
maxIdleTime(Integer maxIdleTime)
Set the time in ms that the websocket created by the websocketServlet
may be idle before closing.
|
default WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder |
maxIdleTime(String maxIdleTime)
Set the time in ms that the websocket created by the websocketServlet
may be idle before closing.
|
default WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder |
maxTextMessageSize(Integer maxTextMessageSize)
Can be used to set the size in characters that the websocket created
by the websocketServlet may be accept before closing.
|
default WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder |
maxTextMessageSize(String maxTextMessageSize)
Can be used to set the size in characters that the websocket created
by the websocketServlet may be accept before closing.
|
default WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder |
minVersion(Integer minVersion)
Can be used to set the minimum protocol version accepted for the
websocketServlet.
|
default WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder |
minVersion(String minVersion)
Can be used to set the minimum protocol version accepted for the
websocketServlet.
|
default WebsocketEndpointBuilderFactory.WebsocketEndpointProducerBuilder basic()
default WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder bufferSize(Integer bufferSize)
bufferSize - the value to setdefault WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder bufferSize(String bufferSize)
bufferSize - the value to setdefault WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder maxIdleTime(Integer maxIdleTime)
maxIdleTime - the value to setdefault WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder maxIdleTime(String maxIdleTime)
maxIdleTime - the value to setdefault WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder maxTextMessageSize(Integer maxTextMessageSize)
maxTextMessageSize - the value to setdefault WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder maxTextMessageSize(String maxTextMessageSize)
maxTextMessageSize - the value to setdefault WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder minVersion(Integer minVersion)
minVersion - the value to setdefault WebsocketEndpointBuilderFactory.AdvancedWebsocketEndpointProducerBuilder minVersion(String minVersion)
minVersion - the value to setApache Camel