Class ExecutorFactoryConfigurationBuilder
java.lang.Object
org.infinispan.configuration.global.AbstractGlobalConfigurationBuilder
org.infinispan.configuration.global.ExecutorFactoryConfigurationBuilder
- All Implemented Interfaces:
Builder<ExecutorFactoryConfiguration>
,GlobalConfigurationChildBuilder
public class ExecutorFactoryConfigurationBuilder
extends AbstractGlobalConfigurationBuilder
implements Builder<ExecutorFactoryConfiguration>
Configures executor factory.
-
Method Summary
Modifier and TypeMethodDescriptionaddProperty
(String key, String value) Add key/value property pair to this executor factory configurationcreate()
Create the configuration beanfactory
(ExecutorFactory factory) Specify factory class for executor NOTE: Currently Infinispan will not use the object instance, but instead instantiate a new instance of the class.read
(ExecutorFactoryConfiguration template, Combine combine) Reads the configuration from an already created configuration bean into this builder.toString()
void
validate()
Validate the data in this builder before building the configuration beanwithProperties
(Properties props) Set key/value properties to this executor factory configurationMethods inherited from class org.infinispan.configuration.global.AbstractGlobalConfigurationBuilder
addModule, asyncThreadPool, blockingThreadPool, build, clearModules, defaultCacheName, expirationThreadPool, getGlobalConfig, globalState, jmx, listenerThreadPool, metrics, module, modules, nonBlockingThreadPool, persistenceThreadPool, security, serialization, shutdown, site, tracing, transport
-
Method Details
-
attributes
- Specified by:
attributes
in interfaceBuilder<ExecutorFactoryConfiguration>
-
factory
Specify factory class for executor NOTE: Currently Infinispan will not use the object instance, but instead instantiate a new instance of the class. Therefore, do not expect any state to survive, and provide a no-args constructor to any instance. This will be resolved in Infinispan 5.2.0- Parameters:
factory
- clazz- Returns:
- this ExecutorFactoryConfig
-
addProperty
Add key/value property pair to this executor factory configuration- Parameters:
key
- property keyvalue
- property value- Returns:
- this ExecutorFactoryConfig
-
withProperties
Set key/value properties to this executor factory configuration- Parameters:
props
- Properties- Returns:
- this ExecutorFactoryConfig
-
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<ExecutorFactoryConfiguration>
-
create
Description copied from interface:Builder
Create the configuration bean- Specified by:
create
in interfaceBuilder<ExecutorFactoryConfiguration>
- Returns:
-
read
public ExecutorFactoryConfigurationBuilder read(ExecutorFactoryConfiguration template, Combine combine) 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<ExecutorFactoryConfiguration>
- Parameters:
template
- the configuration from which to "clone" this config if needed.combine
- the way attributes and children of this instance and the template should be combined.
-
toString
-