Package com.hazelcast.config
Class DurableExecutorConfig
java.lang.Object
com.hazelcast.config.DurableExecutorConfig
- All Implemented Interfaces:
NamedConfig
,UserCodeNamespaceAwareConfig<DurableExecutorConfig>
,DataSerializable
,IdentifiedDataSerializable
,com.hazelcast.nio.serialization.impl.Versioned
public class DurableExecutorConfig
extends Object
implements IdentifiedDataSerializable, NamedConfig, com.hazelcast.nio.serialization.impl.Versioned, UserCodeNamespaceAwareConfig<DurableExecutorConfig>
Contains the configuration for an
DurableExecutorService
.-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Durability of Executor.static final int
The number of executor threads per Member for the Executor based on this configuration.static final int
Capacity of RingBuffer (per partition).Fields inherited from interface com.hazelcast.config.UserCodeNamespaceAwareConfig
DEFAULT_NAMESPACE
-
Constructor Summary
ConstructorDescriptionDurableExecutorConfig
(String name) DurableExecutorConfig
(String name, int poolSize, int durability, int capacity, boolean statisticsEnabled, String userCodeNamespace) DurableExecutorConfig
(String name, int poolSize, int durability, int capacity, String splitBrainProtectionName, boolean statisticsEnabled, String userCodeNamespace) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
int
Gets the ring buffer capacity of the executor task.int
Returns type identifier for this class.int
Gets the durability of the executorint
Returns DataSerializableFactory factory ID for this class.getName()
Gets the name of the executor task.int
Gets the number of executor threads per member for the executor.Returns the split brain protection name for operations.Retrieve the User Code Deployment Namespace to be used forClassLoader
awareness during operations related to the structure associated with this configuration.final int
hashCode()
boolean
void
Reads fields from the input streamsetCapacity
(int capacity) Sets the ring buffer capacity of the executor task.setDurability
(int durability) Sets the durability of the executorSets the name of the executor task.setPoolSize
(int poolSize) Sets the number of executor threads per member for the executor.setSplitBrainProtectionName
(String splitBrainProtectionName) Sets the split brain protection name for operations.setStatisticsEnabled
(boolean statisticsEnabled) Enables or disables statistics gathering on the executor task.setUserCodeNamespace
(String userCodeNamespace) Associates the provided Namespace Name with this structure forClassLoader
awareness.toString()
void
Writes object fields to output stream
-
Field Details
-
DEFAULT_POOL_SIZE
public static final int DEFAULT_POOL_SIZEThe number of executor threads per Member for the Executor based on this configuration.- See Also:
-
DEFAULT_RING_BUFFER_CAPACITY
public static final int DEFAULT_RING_BUFFER_CAPACITYCapacity of RingBuffer (per partition).- See Also:
-
DEFAULT_DURABILITY
public static final int DEFAULT_DURABILITYDurability of Executor.- See Also:
-
-
Constructor Details
-
DurableExecutorConfig
public DurableExecutorConfig() -
DurableExecutorConfig
-
DurableExecutorConfig
-
DurableExecutorConfig
-
DurableExecutorConfig
-
-
Method Details
-
getName
Gets the name of the executor task.- Specified by:
getName
in interfaceNamedConfig
- Returns:
- the name of the executor task
-
setName
Sets the name of the executor task.- Specified by:
setName
in interfaceNamedConfig
- Parameters:
name
- the name of the executor task- Returns:
- this executor config instance
-
getPoolSize
public int getPoolSize()Gets the number of executor threads per member for the executor.- Returns:
- the number of executor threads per member for the executor
-
setPoolSize
Sets the number of executor threads per member for the executor.- Parameters:
poolSize
- the number of executor threads per member for the executor- Returns:
- this executor config instance
-
getDurability
public int getDurability()Gets the durability of the executor- Returns:
- the durability of the executor
-
setDurability
Sets the durability of the executor- Parameters:
durability
- the durability of the executor- Returns:
- this executor config instance
-
getCapacity
public int getCapacity()Gets the ring buffer capacity of the executor task. This is a per partition parameter, so total capacity of the ringbuffers will be partitionCount * capacity- Returns:
- Ring buffer capacity of the executor task
-
setCapacity
Sets the ring buffer capacity of the executor task.- Parameters:
capacity
- Ring Buffer capacity of the executor task- Returns:
- this executor config instance
-
getSplitBrainProtectionName
Returns the split brain protection name for operations.- Returns:
- the split brain protection name
-
setSplitBrainProtectionName
Sets the split brain protection name for operations.- Parameters:
splitBrainProtectionName
- the split brain protection name- Returns:
- the updated configuration
-
isStatisticsEnabled
public boolean isStatisticsEnabled()- Returns:
true
if statistics gathering is enabled on the executor task (default),false
otherwise
-
setStatisticsEnabled
Enables or disables statistics gathering on the executor task.- Parameters:
statisticsEnabled
-true
if statistics gathering is enabled on the executor task,false
otherwise @return this executor config instance
-
getUserCodeNamespace
Retrieve the User Code Deployment Namespace to be used forClassLoader
awareness during operations related to the structure associated with this configuration.- Specified by:
getUserCodeNamespace
in interfaceUserCodeNamespaceAwareConfig<DurableExecutorConfig>
- Returns:
- Namespace Name for use with the
UserCodeNamespaceService
, ornull
if there is no User Code Namespace to associate with.
-
setUserCodeNamespace
Associates the provided Namespace Name with this structure forClassLoader
awareness.The behaviour of setting this to
null
is outlined in the documentation forUserCodeNamespaceAwareConfig.DEFAULT_NAMESPACE
.- Specified by:
setUserCodeNamespace
in interfaceUserCodeNamespaceAwareConfig<DurableExecutorConfig>
- Parameters:
userCodeNamespace
- The ID of the Namespace to associate with this structure.- Returns:
- the updated
DurableExecutorConfig
instance - Since:
- 5.4
-
toString
-
getFactoryId
public int getFactoryId()Description copied from interface:IdentifiedDataSerializable
Returns DataSerializableFactory factory ID for this class.- Specified by:
getFactoryId
in interfaceIdentifiedDataSerializable
- Returns:
- factory ID
-
getClassId
public int getClassId()Description copied from interface:IdentifiedDataSerializable
Returns type identifier for this class. It should be unique per DataSerializableFactory.- Specified by:
getClassId
in interfaceIdentifiedDataSerializable
- Returns:
- type ID
-
writeData
Description copied from interface:DataSerializable
Writes object fields to output stream- Specified by:
writeData
in interfaceDataSerializable
- Parameters:
out
- output- Throws:
IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the output stream has been closed.
-
readData
Description copied from interface:DataSerializable
Reads fields from the input stream- Specified by:
readData
in interfaceDataSerializable
- Parameters:
in
- input- Throws:
IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the input stream has been closed.
-
equals
-
hashCode
public final int hashCode()
-