Interface PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- All Known Subinterfaces:
PahoEndpointBuilderFactory.AdvancedPahoEndpointBuilder
- Enclosing interface:
- PahoEndpointBuilderFactory
public static interface PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint producers for the Paho component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default PahoEndpointBuilderFactory.PahoEndpointProducerBuilder
basic()
default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder
client(Object client)
To use an existing mqtt client.default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder
client(String client)
To use an existing mqtt client.default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder
customWebSocketHeaders(String customWebSocketHeaders)
Sets the Custom WebSocket Headers for the WebSocket Connection.default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder
customWebSocketHeaders(Properties customWebSocketHeaders)
Sets the Custom WebSocket Headers for the WebSocket Connection.default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder
executorServiceTimeout(int executorServiceTimeout)
Set the time in seconds that the executor service should wait when terminating before forcefully terminating.default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder
executorServiceTimeout(String executorServiceTimeout)
Set the time in seconds that the executor service should wait when terminating before forcefully terminating.default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).
-
-
-
Method Detail
-
basic
default PahoEndpointBuilderFactory.PahoEndpointProducerBuilder basic()
-
client
default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder client(Object client)
To use an existing mqtt client. The option is a:org.eclipse.paho.client.mqttv3.MqttClient
type. Group: advanced
-
client
default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder client(String client)
To use an existing mqtt client. The option will be converted to aorg.eclipse.paho.client.mqttv3.MqttClient
type. Group: advanced
-
customWebSocketHeaders
default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder customWebSocketHeaders(Properties customWebSocketHeaders)
Sets the Custom WebSocket Headers for the WebSocket Connection. The option is a:java.util.Properties
type. Group: advanced
-
customWebSocketHeaders
default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder customWebSocketHeaders(String customWebSocketHeaders)
Sets the Custom WebSocket Headers for the WebSocket Connection. The option will be converted to ajava.util.Properties
type. Group: advanced
-
executorServiceTimeout
default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder executorServiceTimeout(int executorServiceTimeout)
Set the time in seconds that the executor service should wait when terminating before forcefully terminating. It is not recommended to change this value unless you are absolutely sure that you need to. The option is a:int
type. Default: 1 Group: advanced
-
executorServiceTimeout
default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder executorServiceTimeout(String executorServiceTimeout)
Set the time in seconds that the executor service should wait when terminating before forcefully terminating. It is not recommended to change this value unless you are absolutely sure that you need to. The option will be converted to aint
type. Default: 1 Group: advanced
-
synchronous
default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option is a:boolean
type. Default: false Group: advanced
-
synchronous
default PahoEndpointBuilderFactory.AdvancedPahoEndpointProducerBuilder synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option will be converted to aboolean
type. Default: false Group: advanced
-
-