Interface NsqEndpointBuilderFactory.NsqEndpointProducerBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- All Known Subinterfaces:
NsqEndpointBuilderFactory.NsqEndpointBuilder
- Enclosing interface:
- NsqEndpointBuilderFactory
public static interface NsqEndpointBuilderFactory.NsqEndpointProducerBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Builder for endpoint producers for the NSQ component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default NsqEndpointBuilderFactory.AdvancedNsqEndpointProducerBuilder
advanced()
default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder
lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message).default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder
lazyStartProducer(String lazyStartProducer)
Whether the producer should be started lazy (on the first message).default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder
port(int port)
The port of the nsqd server.default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder
port(String port)
The port of the nsqd server.default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder
secure(boolean secure)
Set secure option indicating TLS is required.default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder
secure(String secure)
Set secure option indicating TLS is required.default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder
servers(String servers)
The hostnames of one or more nsqlookupd servers (consumer) or nsqd servers (producer).default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder
sslContextParameters(Object sslContextParameters)
To configure security using SSLContextParameters.default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder
sslContextParameters(String sslContextParameters)
To configure security using SSLContextParameters.default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder
userAgent(String userAgent)
A String to identify the kind of client.
-
-
-
Method Detail
-
advanced
default NsqEndpointBuilderFactory.AdvancedNsqEndpointProducerBuilder advanced()
-
servers
default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder servers(String servers)
The hostnames of one or more nsqlookupd servers (consumer) or nsqd servers (producer). The option is a:java.lang.String
type. Group: common
-
userAgent
default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder userAgent(String userAgent)
A String to identify the kind of client. The option is a:java.lang.String
type. Group: common
-
lazyStartProducer
default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option is a:boolean
type. Default: false Group: producer
-
lazyStartProducer
default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder lazyStartProducer(String lazyStartProducer)
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option will be converted to aboolean
type. Default: false Group: producer
-
port
default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder port(int port)
The port of the nsqd server. The option is a:int
type. Default: 4150 Group: producer
-
port
default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder port(String port)
The port of the nsqd server. The option will be converted to aint
type. Default: 4150 Group: producer
-
secure
default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder secure(boolean secure)
Set secure option indicating TLS is required. The option is a:boolean
type. Default: false Group: security
-
secure
default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder secure(String secure)
Set secure option indicating TLS is required. The option will be converted to aboolean
type. Default: false Group: security
-
sslContextParameters
default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder sslContextParameters(Object sslContextParameters)
To configure security using SSLContextParameters. The option is a:org.apache.camel.support.jsse.SSLContextParameters
type. Group: security
-
sslContextParameters
default NsqEndpointBuilderFactory.NsqEndpointProducerBuilder sslContextParameters(String sslContextParameters)
To configure security using SSLContextParameters. The option will be converted to aorg.apache.camel.support.jsse.SSLContextParameters
type. Group: security
-
-