Interface AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
-
- All Superinterfaces:
ComponentBuilder<org.apache.camel.component.atomix.client.set.AtomixSetComponent>
- All Known Implementing Classes:
AtomixSetComponentBuilderFactory.AtomixSetComponentBuilderImpl
- Enclosing interface:
- AtomixSetComponentBuilderFactory
public static interface AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder extends ComponentBuilder<org.apache.camel.component.atomix.client.set.AtomixSetComponent>
Builder for the Atomix Set component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
atomix(io.atomix.Atomix atomix)
The Atomix instance to use.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
autowiredEnabled(boolean autowiredEnabled)
Whether autowiring is enabled.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
bridgeErrorHandler(boolean bridgeErrorHandler)
Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
configuration(org.apache.camel.component.atomix.client.set.AtomixSetConfiguration configuration)
The shared component configuration.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
configurationUri(String configurationUri)
The path to the AtomixClient configuration.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
defaultAction(org.apache.camel.component.atomix.client.set.AtomixSet.Action defaultAction)
The default action.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
defaultResourceConfig(Properties defaultResourceConfig)
The cluster wide default resource configuration.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
defaultResourceOptions(Properties defaultResourceOptions)
The local default resource options.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
ephemeral(boolean ephemeral)
Sets if the local member should join groups as PersistentMember or not.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message).default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
nodes(List<io.atomix.catalyst.transport.Address> nodes)
The nodes the AtomixClient should connect to.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
readConsistency(io.atomix.resource.ReadConsistency readConsistency)
The read consistency level.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
resourceConfigs(Map<String,Properties> resourceConfigs)
Cluster wide resources configuration.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
resourceOptions(Map<String,Properties> resourceOptions)
Local resources configurations.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
resultHeader(String resultHeader)
The header that wil carry the result.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
transportClassName(String transportClassName)
The class name (fqn) of the Atomix transport.default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder
ttl(long ttl)
The resource ttl.-
Methods inherited from interface org.apache.camel.builder.component.ComponentBuilder
build, build, doSetProperty, register
-
-
-
-
Method Detail
-
atomix
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder atomix(io.atomix.Atomix atomix)
The Atomix instance to use. The option is a: <code>io.atomix.Atomix</code> type. Group: common- Parameters:
atomix
- the value to set- Returns:
- the dsl builder
-
configuration
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder configuration(org.apache.camel.component.atomix.client.set.AtomixSetConfiguration configuration)
The shared component configuration. The option is a: <code>org.apache.camel.component.atomix.client.set.AtomixSetConfiguration</code> type. Group: common- Parameters:
configuration
- the value to set- Returns:
- the dsl builder
-
configurationUri
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder configurationUri(String configurationUri)
The path to the AtomixClient configuration. The option is a: <code>java.lang.String</code> type. Group: common- Parameters:
configurationUri
- the value to set- Returns:
- the dsl builder
-
defaultAction
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder defaultAction(org.apache.camel.component.atomix.client.set.AtomixSet.Action defaultAction)
The default action. The option is a: <code>org.apache.camel.component.atomix.client.set.AtomixSet.Action</code> type. Default: ADD Group: common- Parameters:
defaultAction
- the value to set- Returns:
- the dsl builder
-
nodes
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder nodes(List<io.atomix.catalyst.transport.Address> nodes)
The nodes the AtomixClient should connect to. The option is a: <code>java.util.List<io.atomix.catalyst.transport.Address></code> type. Group: common- Parameters:
nodes
- the value to set- Returns:
- the dsl builder
-
resultHeader
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder resultHeader(String resultHeader)
The header that wil carry the result. The option is a: <code>java.lang.String</code> type. Group: common- Parameters:
resultHeader
- the value to set- Returns:
- the dsl builder
-
transportClassName
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder transportClassName(String transportClassName)
The class name (fqn) of the Atomix transport. The option is a: <code>java.lang.String</code> type. Default: io.atomix.catalyst.transport.netty.NettyTransport Group: common- Parameters:
transportClassName
- the value to set- Returns:
- the dsl builder
-
ttl
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder ttl(long ttl)
The resource ttl. The option is a: <code>long</code> type. Group: common- Parameters:
ttl
- the value to set- Returns:
- the dsl builder
-
bridgeErrorHandler
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option is a: <code>boolean</code> type. Default: false Group: consumer- Parameters:
bridgeErrorHandler
- the value to set- Returns:
- the dsl builder
-
lazyStartProducer
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder 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: <code>boolean</code> type. Default: false Group: producer- Parameters:
lazyStartProducer
- the value to set- Returns:
- the dsl builder
-
autowiredEnabled
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder autowiredEnabled(boolean autowiredEnabled)
Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc. The option is a: <code>boolean</code> type. Default: true Group: advanced- Parameters:
autowiredEnabled
- the value to set- Returns:
- the dsl builder
-
defaultResourceConfig
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder defaultResourceConfig(Properties defaultResourceConfig)
The cluster wide default resource configuration. The option is a: <code>java.util.Properties</code> type. Group: advanced- Parameters:
defaultResourceConfig
- the value to set- Returns:
- the dsl builder
-
defaultResourceOptions
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder defaultResourceOptions(Properties defaultResourceOptions)
The local default resource options. The option is a: <code>java.util.Properties</code> type. Group: advanced- Parameters:
defaultResourceOptions
- the value to set- Returns:
- the dsl builder
-
ephemeral
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder ephemeral(boolean ephemeral)
Sets if the local member should join groups as PersistentMember or not. If set to ephemeral the local member will receive an auto generated ID thus the local one is ignored. The option is a: <code>boolean</code> type. Default: false Group: advanced- Parameters:
ephemeral
- the value to set- Returns:
- the dsl builder
-
readConsistency
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder readConsistency(io.atomix.resource.ReadConsistency readConsistency)
The read consistency level. The option is a: <code>io.atomix.resource.ReadConsistency</code> type. Group: advanced- Parameters:
readConsistency
- the value to set- Returns:
- the dsl builder
-
resourceConfigs
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder resourceConfigs(Map<String,Properties> resourceConfigs)
Cluster wide resources configuration. The option is a: <code>java.util.Map<java.lang.String, java.util.Properties></code> type. Group: advanced- Parameters:
resourceConfigs
- the value to set- Returns:
- the dsl builder
-
resourceOptions
default AtomixSetComponentBuilderFactory.AtomixSetComponentBuilder resourceOptions(Map<String,Properties> resourceOptions)
Local resources configurations. The option is a: <code>java.util.Map<java.lang.String, java.util.Properties></code> type. Group: advanced- Parameters:
resourceOptions
- the value to set- Returns:
- the dsl builder
-
-