Class RemoteCacheConfigurationBuilder
- java.lang.Object
-
- org.infinispan.client.hotrod.configuration.RemoteCacheConfigurationBuilder
-
- All Implemented Interfaces:
Builder<RemoteCacheConfiguration>
public class RemoteCacheConfigurationBuilder extends Object implements Builder<RemoteCacheConfiguration>
Per-cache configuration.- Since:
- 11.0
- Author:
- Tristan Tarrant <tristan@infinispan.org>
-
-
Constructor Summary
Constructors Constructor Description RemoteCacheConfigurationBuilder(ConfigurationBuilder builder, String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RemoteCacheConfigurationBuilder
configuration(String configuration)
Specifies the declarative configuration to be used to create the cache if it doesn't already exist on the server.RemoteCacheConfiguration
create()
Create the configuration beanRemoteCacheConfigurationBuilder
forceReturnValues(boolean forceReturnValues)
Whether or not to implicitly FORCE_RETURN_VALUE for all calls to this cache.RemoteCacheConfigurationBuilder
nearCacheMaxEntries(int maxEntries)
Specifies the maximum number of entries that will be held in the near cache.RemoteCacheConfigurationBuilder
nearCacheMode(NearCacheMode mode)
Specifies the near caching mode.Builder<?>
read(RemoteCacheConfiguration template)
Reads the configuration from an already created configuration bean into this builder.RemoteCacheConfigurationBuilder
templateName(String templateName)
Specifies the name of a template to be used to create the cache if it doesn't already exist on the server.RemoteCacheConfigurationBuilder
templateName(DefaultTemplate template)
Specifies one of the default templates to be used to create the cache if it doesn't already exist on the server.RemoteCacheConfigurationBuilder
transactionMode(TransactionMode mode)
TheTransactionMode
in which aRemoteCache
will be enlisted.void
validate()
Validate the data in this builder before building the configuration beanConfigurationBuilder
withProperties(Properties properties)
-
-
-
Constructor Detail
-
RemoteCacheConfigurationBuilder
public RemoteCacheConfigurationBuilder(ConfigurationBuilder builder, String name)
-
-
Method Detail
-
forceReturnValues
public RemoteCacheConfigurationBuilder forceReturnValues(boolean forceReturnValues)
Whether or not to implicitly FORCE_RETURN_VALUE for all calls to this cache.
-
nearCacheMode
public RemoteCacheConfigurationBuilder nearCacheMode(NearCacheMode mode)
Specifies the near caching mode. SeeNearCacheMode
for details on the available modes.- Parameters:
mode
- one ofNearCacheMode
- Returns:
- an instance of the builder
-
nearCacheMaxEntries
public RemoteCacheConfigurationBuilder nearCacheMaxEntries(int maxEntries)
Specifies the maximum number of entries that will be held in the near cache. Only works whennearCacheMode(NearCacheMode)
is notNearCacheMode.DISABLED
.- Parameters:
maxEntries
- maximum entries in the near cache.- Returns:
- an instance of the builder
-
configuration
public RemoteCacheConfigurationBuilder configuration(String configuration)
Specifies the declarative configuration to be used to create the cache if it doesn't already exist on the server.- Parameters:
configuration
- the XML representation of a cache configuration.- Returns:
- an instance of the builder
-
templateName
public RemoteCacheConfigurationBuilder templateName(String templateName)
Specifies the name of a template to be used to create the cache if it doesn't already exist on the server.- Parameters:
templateName
- the name of the template.- Returns:
- an instance of the builder
-
templateName
public RemoteCacheConfigurationBuilder templateName(DefaultTemplate template)
Specifies one of the default templates to be used to create the cache if it doesn't already exist on the server.- Parameters:
template
- the template to use- Returns:
- an instance of the builder
-
transactionMode
public RemoteCacheConfigurationBuilder transactionMode(TransactionMode mode)
TheTransactionMode
in which aRemoteCache
will be enlisted.- Parameters:
mode
- the transaction mode- Returns:
- an instance of the builder
-
validate
public void validate()
Description copied from interface:Builder
Validate the data in this builder before building the configuration bean- Specified by:
validate
in interfaceBuilder<RemoteCacheConfiguration>
-
create
public RemoteCacheConfiguration create()
Description copied from interface:Builder
Create the configuration bean- Specified by:
create
in interfaceBuilder<RemoteCacheConfiguration>
- Returns:
-
read
public Builder<?> read(RemoteCacheConfiguration template)
Description copied from interface:Builder
Reads the configuration from an already created configuration bean into this builder. Returns an appropriate builder to allow fluent configuration- Specified by:
read
in interfaceBuilder<RemoteCacheConfiguration>
- Parameters:
template
- the configuration from which to "clone" this config if needed.
-
withProperties
public ConfigurationBuilder withProperties(Properties properties)
-
-