Interface StreamEndpointBuilderFactory.AdvancedStreamEndpointProducerBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- All Known Subinterfaces:
StreamEndpointBuilderFactory.AdvancedStreamEndpointBuilder
- Enclosing interface:
- StreamEndpointBuilderFactory
public static interface StreamEndpointBuilderFactory.AdvancedStreamEndpointProducerBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint producers for the Stream component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default StreamEndpointBuilderFactory.StreamEndpointProducerBuilder
basic()
default StreamEndpointBuilderFactory.AdvancedStreamEndpointProducerBuilder
readTimeout(int readTimeout)
Sets the read timeout to a specified timeout, in milliseconds.default StreamEndpointBuilderFactory.AdvancedStreamEndpointProducerBuilder
readTimeout(String readTimeout)
Sets the read timeout to a specified timeout, in milliseconds.default StreamEndpointBuilderFactory.AdvancedStreamEndpointProducerBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default StreamEndpointBuilderFactory.AdvancedStreamEndpointProducerBuilder
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 StreamEndpointBuilderFactory.StreamEndpointProducerBuilder basic()
-
readTimeout
default StreamEndpointBuilderFactory.AdvancedStreamEndpointProducerBuilder readTimeout(int readTimeout)
Sets the read timeout to a specified timeout, in milliseconds. A non-zero value specifies the timeout when reading from Input stream when a connection is established to a resource. If the timeout expires before there is data available for read, a java.net.SocketTimeoutException is raised. A timeout of zero is interpreted as an infinite timeout. The option is a:int
type. Group: advanced
-
readTimeout
default StreamEndpointBuilderFactory.AdvancedStreamEndpointProducerBuilder readTimeout(String readTimeout)
Sets the read timeout to a specified timeout, in milliseconds. A non-zero value specifies the timeout when reading from Input stream when a connection is established to a resource. If the timeout expires before there is data available for read, a java.net.SocketTimeoutException is raised. A timeout of zero is interpreted as an infinite timeout. The option will be converted to aint
type. Group: advanced
-
synchronous
default StreamEndpointBuilderFactory.AdvancedStreamEndpointProducerBuilder 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 StreamEndpointBuilderFactory.AdvancedStreamEndpointProducerBuilder 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
-
-