Package com.hazelcast.config
Class PNCounterConfig
- java.lang.Object
-
- com.hazelcast.config.PNCounterConfig
-
- All Implemented Interfaces:
NamedConfig
,DataSerializable
,IdentifiedDataSerializable
public class PNCounterConfig extends java.lang.Object implements IdentifiedDataSerializable, NamedConfig
Configuration for aPNCounter
- Since:
- 3.10
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_REPLICA_COUNT
The default number of replicas on which state for this CRDT is keptstatic boolean
DEFAULT_STATISTICS_ENABLED
Default value for statistics enabled.
-
Constructor Summary
Constructors Constructor Description PNCounterConfig()
PNCounterConfig(PNCounterConfig config)
PNCounterConfig(java.lang.String name)
PNCounterConfig(java.lang.String name, int replicaCount, java.lang.String splitBrainProtectionName, boolean statisticsEnabled)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
getClassId()
Returns type identifier for this class.int
getFactoryId()
Returns DataSerializableFactory factory ID for this class.java.lang.String
getName()
Gets the name of the PN counter.int
getReplicaCount()
Returns the number of replicas on which state for this PN counter will be kept.java.lang.String
getSplitBrainProtectionName()
Returns the split brain protection name for operations.int
hashCode()
boolean
isStatisticsEnabled()
Checks if statistics are enabled for this PN countervoid
readData(ObjectDataInput in)
Reads fields from the input streamPNCounterConfig
setName(java.lang.String name)
Sets the name of the PN counter.PNCounterConfig
setReplicaCount(int replicaCount)
Sets the number of replicas on which state for this PN counter will be kept.PNCounterConfig
setSplitBrainProtectionName(java.lang.String splitBrainProtectionName)
Sets the split brain protection name for operations.PNCounterConfig
setStatisticsEnabled(boolean statisticsEnabled)
Enables or disables statistics for this PN countervoid
writeData(ObjectDataOutput out)
Writes object fields to output stream
-
-
-
Field Detail
-
DEFAULT_REPLICA_COUNT
public static final int DEFAULT_REPLICA_COUNT
The default number of replicas on which state for this CRDT is kept- See Also:
- Constant Field Values
-
DEFAULT_STATISTICS_ENABLED
public static final boolean DEFAULT_STATISTICS_ENABLED
Default value for statistics enabled.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PNCounterConfig
public PNCounterConfig()
-
PNCounterConfig
public PNCounterConfig(java.lang.String name, int replicaCount, java.lang.String splitBrainProtectionName, boolean statisticsEnabled)
-
PNCounterConfig
public PNCounterConfig(java.lang.String name)
-
PNCounterConfig
public PNCounterConfig(PNCounterConfig config)
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the name of the PN counter.- Specified by:
getName
in interfaceNamedConfig
-
setName
public PNCounterConfig setName(java.lang.String name)
Sets the name of the PN counter.- Specified by:
setName
in interfaceNamedConfig
- Parameters:
name
- the name of the PN counter- Returns:
- the updated PN counter config
-
isStatisticsEnabled
public boolean isStatisticsEnabled()
Checks if statistics are enabled for this PN counter- Returns:
true
if enabled,false
otherwise
-
setStatisticsEnabled
public PNCounterConfig setStatisticsEnabled(boolean statisticsEnabled)
Enables or disables statistics for this PN counter- Parameters:
statisticsEnabled
-true
to enable statistics,false
to disable- Returns:
- the updated PN counter config
-
getReplicaCount
public int getReplicaCount()
Returns the number of replicas on which state for this PN counter will be kept. This number applies in quiescent state, if there are currently membership changes or clusters are merging, the state may be temporarily kept on more replicas.- Returns:
- the number of replicas for the CRDT state
-
setReplicaCount
public PNCounterConfig setReplicaCount(int replicaCount)
Sets the number of replicas on which state for this PN counter will be kept. This number applies in quiescent state, if there are currently membership changes or clusters are merging, the state may be temporarily kept on more replicas.The provided
replicaCount
must be between 1 and 2147483647.- Parameters:
replicaCount
- the number of replicas for the CRDT state- Returns:
- the updated PN counter config
- Throws:
InvalidConfigurationException
- if thereplicaCount
is less than 1
-
getSplitBrainProtectionName
public java.lang.String getSplitBrainProtectionName()
Returns the split brain protection name for operations.- Returns:
- the split brain protection name
-
setSplitBrainProtectionName
public PNCounterConfig setSplitBrainProtectionName(java.lang.String splitBrainProtectionName)
Sets the split brain protection name for operations.- Parameters:
splitBrainProtectionName
- the split brain protection name- Returns:
- the updated PN counter config
-
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
public void writeData(ObjectDataOutput out) throws java.io.IOException
Description copied from interface:DataSerializable
Writes object fields to output stream- Specified by:
writeData
in interfaceDataSerializable
- Parameters:
out
- output- Throws:
java.io.IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the output stream has been closed.
-
readData
public void readData(ObjectDataInput in) throws java.io.IOException
Description copied from interface:DataSerializable
Reads fields from the input stream- Specified by:
readData
in interfaceDataSerializable
- Parameters:
in
- input- Throws:
java.io.IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the input stream has been closed.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-