Interface CaffeineCacheEndpointBuilderFactory.AdvancedCaffeineCacheEndpointBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- Enclosing interface:
- CaffeineCacheEndpointBuilderFactory
public static interface CaffeineCacheEndpointBuilderFactory.AdvancedCaffeineCacheEndpointBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint for the Caffeine Cache component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default CaffeineCacheEndpointBuilderFactory.CaffeineCacheEndpointBuilder
basic()
default CaffeineCacheEndpointBuilderFactory.AdvancedCaffeineCacheEndpointBuilder
keyType(String keyType)
The cache key type, default java.lang.Object.default CaffeineCacheEndpointBuilderFactory.AdvancedCaffeineCacheEndpointBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default CaffeineCacheEndpointBuilderFactory.AdvancedCaffeineCacheEndpointBuilder
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default CaffeineCacheEndpointBuilderFactory.AdvancedCaffeineCacheEndpointBuilder
valueType(String valueType)
The cache value type, default java.lang.Object.
-
-
-
Method Detail
-
basic
default CaffeineCacheEndpointBuilderFactory.CaffeineCacheEndpointBuilder basic()
-
keyType
default CaffeineCacheEndpointBuilderFactory.AdvancedCaffeineCacheEndpointBuilder keyType(String keyType)
The cache key type, default java.lang.Object. The option is a:java.lang.String
type. Group: advanced
-
synchronous
default CaffeineCacheEndpointBuilderFactory.AdvancedCaffeineCacheEndpointBuilder 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 CaffeineCacheEndpointBuilderFactory.AdvancedCaffeineCacheEndpointBuilder 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 CaffeineCacheEndpointBuilderFactory.AdvancedCaffeineCacheEndpointBuilder valueType(String valueType)
The cache value type, default java.lang.Object. The option is a:java.lang.String
type. Group: advanced
-
-