Class ScheduledExecutorFactoryConfigurationBuilder
java.lang.Object
org.infinispan.configuration.global.AbstractGlobalConfigurationBuilder
org.infinispan.configuration.global.ScheduledExecutorFactoryConfigurationBuilder
- All Implemented Interfaces:
Builder<ScheduledExecutorFactoryConfiguration>
,GlobalConfigurationChildBuilder
public class ScheduledExecutorFactoryConfigurationBuilder
extends AbstractGlobalConfigurationBuilder
implements Builder<ScheduledExecutorFactoryConfiguration>
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
(ScheduledExecutorFactory 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
(ScheduledExecutorFactoryConfiguration 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<ScheduledExecutorFactoryConfiguration>
-
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 ScheduledExecutorFactoryConfig
-
addProperty
Add key/value property pair to this executor factory configuration- Parameters:
key
- property keyvalue
- property value- Returns:
- previous value if exists, null otherwise
-
withProperties
Set key/value properties to this executor factory configuration- Parameters:
props
- Properties- Returns:
- this ScheduledExecutorFactoryConfig
-
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<ScheduledExecutorFactoryConfiguration>
-
create
Description copied from interface:Builder
Create the configuration bean- Specified by:
create
in interfaceBuilder<ScheduledExecutorFactoryConfiguration>
- Returns:
-
read
public ScheduledExecutorFactoryConfigurationBuilder read(ScheduledExecutorFactoryConfiguration 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<ScheduledExecutorFactoryConfiguration>
- 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
-