Package me.ahoo.cosid.segment
Class IdSegmentDistributor.Atomic
java.lang.Object
me.ahoo.cosid.segment.IdSegmentDistributor.Atomic
- All Implemented Interfaces:
Grouped,IdSegmentDistributor
- Enclosing interface:
- IdSegmentDistributor
Atomic implementation of IdSegmentDistributor for testing purposes.
This implementation uses atomic operations to allocate ID segments, making it suitable for single-instance scenarios or testing.
-
Nested Class Summary
Nested classes/interfaces inherited from interface me.ahoo.cosid.segment.IdSegmentDistributor
IdSegmentDistributor.Atomic, IdSegmentDistributor.Mock -
Field Summary
Fields inherited from interface me.ahoo.cosid.segment.IdSegmentDistributor
DEFAULT_OFFSET, DEFAULT_SEGMENTS, DEFAULT_STEP -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface me.ahoo.cosid.segment.IdSegmentDistributor
allowReset, getNamespacedName, getStep, nextIdSegment, nextIdSegment, nextIdSegment, nextIdSegmentChain, nextIdSegmentChain, nextMaxId
-
Constructor Details
-
Atomic
public Atomic()Create a new Atomic distributor with default step size. -
Atomic
public Atomic(long step) Create a new Atomic distributor with custom step size.- Parameters:
step- The step size for ID segments
-
-
Method Details
-
getNamespace
Get the namespace for this distributor.- Specified by:
getNamespacein interfaceIdSegmentDistributor- Returns:
- The namespace
-
getName
Get the name for this distributor.- Specified by:
getNamein interfaceIdSegmentDistributor- Returns:
- The name
-
getStep
public long getStep()Get the step size for ID segments.- Specified by:
getStepin interfaceIdSegmentDistributor- Returns:
- The step size
-
nextMaxId
public long nextMaxId(long step) Allocate the next maximum ID for the specified step size.- Specified by:
nextMaxIdin interfaceIdSegmentDistributor- Parameters:
step- The step size for allocation- Returns:
- The maximum ID in the allocated range
-