Interface IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- Enclosing interface:
- IgniteComputeEndpointBuilderFactory
public static interface IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Builder for endpoint for the Ignite Compute component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default IgniteComputeEndpointBuilderFactory.AdvancedIgniteComputeEndpointBuilder
advanced()
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
clusterGroupExpression(Object clusterGroupExpression)
An expression that returns the Cluster Group for the IgniteCompute instance.default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
clusterGroupExpression(String clusterGroupExpression)
An expression that returns the Cluster Group for the IgniteCompute instance.default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
computeName(String computeName)
The name of the compute job, which will be set via IgniteCompute#withName(String).default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
executionType(String executionType)
The compute operation to perform.default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
executionType(IgniteComputeEndpointBuilderFactory.IgniteComputeExecutionType executionType)
The compute operation to perform.default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message).default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
lazyStartProducer(String lazyStartProducer)
Whether the producer should be started lazy (on the first message).default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
propagateIncomingBodyIfNoReturnValue(boolean propagateIncomingBodyIfNoReturnValue)
Sets whether to propagate the incoming body if the return type of the underlying Ignite operation is void.default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
propagateIncomingBodyIfNoReturnValue(String propagateIncomingBodyIfNoReturnValue)
Sets whether to propagate the incoming body if the return type of the underlying Ignite operation is void.default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
taskName(String taskName)
The task name, only applicable if using the IgniteComputeExecutionType#EXECUTE execution type.default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
timeoutMillis(Long timeoutMillis)
The timeout interval for triggered jobs, in milliseconds, which will be set via IgniteCompute#withTimeout(long).default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
timeoutMillis(String timeoutMillis)
The timeout interval for triggered jobs, in milliseconds, which will be set via IgniteCompute#withTimeout(long).default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
treatCollectionsAsCacheObjects(boolean treatCollectionsAsCacheObjects)
Sets whether to treat Collections as cache objects or as Collections of items to insert/update/compute, etc.default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder
treatCollectionsAsCacheObjects(String treatCollectionsAsCacheObjects)
Sets whether to treat Collections as cache objects or as Collections of items to insert/update/compute, etc.
-
-
-
Method Detail
-
advanced
default IgniteComputeEndpointBuilderFactory.AdvancedIgniteComputeEndpointBuilder advanced()
-
clusterGroupExpression
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder clusterGroupExpression(Object clusterGroupExpression)
An expression that returns the Cluster Group for the IgniteCompute instance. The option is a:org.apache.camel.component.ignite.ClusterGroupExpression
type. Group: producer
-
clusterGroupExpression
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder clusterGroupExpression(String clusterGroupExpression)
An expression that returns the Cluster Group for the IgniteCompute instance. The option will be converted to aorg.apache.camel.component.ignite.ClusterGroupExpression
type. Group: producer
-
computeName
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder computeName(String computeName)
The name of the compute job, which will be set via IgniteCompute#withName(String). The option is a:java.lang.String
type. Group: producer
-
executionType
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder executionType(IgniteComputeEndpointBuilderFactory.IgniteComputeExecutionType executionType)
The compute operation to perform. Possible values: CALL, BROADCAST, APPLY, EXECUTE, RUN, AFFINITY_CALL, AFFINITY_RUN. The component expects different payload types depending on the operation. The option is a:org.apache.camel.component.ignite.compute.IgniteComputeExecutionType
type. Required: true Group: producer
-
executionType
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder executionType(String executionType)
The compute operation to perform. Possible values: CALL, BROADCAST, APPLY, EXECUTE, RUN, AFFINITY_CALL, AFFINITY_RUN. The component expects different payload types depending on the operation. The option will be converted to aorg.apache.camel.component.ignite.compute.IgniteComputeExecutionType
type. Required: true Group: producer
-
lazyStartProducer
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder 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 IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder 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
-
propagateIncomingBodyIfNoReturnValue
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder propagateIncomingBodyIfNoReturnValue(boolean propagateIncomingBodyIfNoReturnValue)
Sets whether to propagate the incoming body if the return type of the underlying Ignite operation is void. The option is a:boolean
type. Default: true Group: producer
-
propagateIncomingBodyIfNoReturnValue
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder propagateIncomingBodyIfNoReturnValue(String propagateIncomingBodyIfNoReturnValue)
Sets whether to propagate the incoming body if the return type of the underlying Ignite operation is void. The option will be converted to aboolean
type. Default: true Group: producer
-
taskName
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder taskName(String taskName)
The task name, only applicable if using the IgniteComputeExecutionType#EXECUTE execution type. The option is a:java.lang.String
type. Group: producer
-
timeoutMillis
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder timeoutMillis(Long timeoutMillis)
The timeout interval for triggered jobs, in milliseconds, which will be set via IgniteCompute#withTimeout(long). The option is a:java.lang.Long
type. Group: producer
-
timeoutMillis
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder timeoutMillis(String timeoutMillis)
The timeout interval for triggered jobs, in milliseconds, which will be set via IgniteCompute#withTimeout(long). The option will be converted to ajava.lang.Long
type. Group: producer
-
treatCollectionsAsCacheObjects
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder treatCollectionsAsCacheObjects(boolean treatCollectionsAsCacheObjects)
Sets whether to treat Collections as cache objects or as Collections of items to insert/update/compute, etc. The option is a:boolean
type. Default: false Group: producer
-
treatCollectionsAsCacheObjects
default IgniteComputeEndpointBuilderFactory.IgniteComputeEndpointBuilder treatCollectionsAsCacheObjects(String treatCollectionsAsCacheObjects)
Sets whether to treat Collections as cache objects or as Collections of items to insert/update/compute, etc. The option will be converted to aboolean
type. Default: false Group: producer
-
-