Interface EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- All Known Subinterfaces:
EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointBuilder
- Enclosing interface:
- EhcacheEndpointBuilderFactory
public static interface EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint producers for the Ehcache component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default EhcacheEndpointBuilderFactory.EhcacheEndpointProducerBuilder
basic()
default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder
configuration(Object configuration)
The default cache configuration to be used to create caches.default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder
configuration(String configuration)
The default cache configuration to be used to create caches.default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder
configurations(String configurations)
A map of cache configuration to be used to create caches.default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder
configurations(Map<String,Object> configurations)
A map of cache configuration to be used to create caches.default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder
keyType(String keyType)
The cache key type, default java.lang.Object.default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder
valueType(String valueType)
The cache value type, default java.lang.Object.
-
-
-
Method Detail
-
basic
default EhcacheEndpointBuilderFactory.EhcacheEndpointProducerBuilder basic()
-
configuration
default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder configuration(Object configuration)
The default cache configuration to be used to create caches. The option is a:org.apache.camel.component.ehcache.EhcacheConfiguration
type. Group: advanced
-
configuration
default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder configuration(String configuration)
The default cache configuration to be used to create caches. The option will be converted to aorg.apache.camel.component.ehcache.EhcacheConfiguration
type. Group: advanced
-
configurations
default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder configurations(Map<String,Object> configurations)
A map of cache configuration to be used to create caches. The option is a:java.util.Map<java.lang.String, org.ehcache.config.CacheConfiguration>
type. Group: advanced
-
configurations
default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder configurations(String configurations)
A map of cache configuration to be used to create caches. The option will be converted to ajava.util.Map<java.lang.String, org.ehcache.config.CacheConfiguration>
type. Group: advanced
-
keyType
default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder keyType(String keyType)
The cache key type, default java.lang.Object. The option is a:java.lang.String
type. Group: advanced
-
synchronous
default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder 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 EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder 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
-
valueType
default EhcacheEndpointBuilderFactory.AdvancedEhcacheEndpointProducerBuilder valueType(String valueType)
The cache value type, default java.lang.Object. The option is a:java.lang.String
type. Group: advanced
-
-