Package me.ahoo.cosid.proxy
Class ProxyIdSegmentDistributor
java.lang.Object
me.ahoo.cosid.proxy.ProxyIdSegmentDistributor
- All Implemented Interfaces:
Grouped,IdSegmentDistributor
ProxyIdSegmentDistributor .

-
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
ConstructorsConstructorDescriptionProxyIdSegmentDistributor(SegmentClient segmentClient, String namespace, String name, long step) -
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
-
ProxyIdSegmentDistributor
public ProxyIdSegmentDistributor(SegmentClient segmentClient, String namespace, String name, long step)
-
-
Method Details
-
getNamespace
Description copied from interface:IdSegmentDistributorGet the namespace for this distributor.The namespace provides a logical grouping for ID segments, allowing multiple independent segment spaces within the same system.
- Specified by:
getNamespacein interfaceIdSegmentDistributor- Returns:
- The namespace
-
getName
Description copied from interface:IdSegmentDistributorGet the name for this distributor.The name uniquely identifies this distributor within its namespace.
- Specified by:
getNamein interfaceIdSegmentDistributor- Returns:
- The name
-
getStep
public long getStep()Description copied from interface:IdSegmentDistributorGet the step size for ID segments.The step size determines how many IDs are allocated in each segment. Larger steps reduce coordination overhead but may lead to ID gaps.
- Specified by:
getStepin interfaceIdSegmentDistributor- Returns:
- The step size
-
nextMaxId
public long nextMaxId(long step) Description copied from interface:IdSegmentDistributorAllocate the next maximum ID for the specified step size.This method allocates a new range of IDs by returning the maximum ID in the allocated range. The range starts at the previous maximum plus one and ends at the returned value.
- Specified by:
nextMaxIdin interfaceIdSegmentDistributor- Parameters:
step- The step size for allocation- Returns:
- The maximum ID in the allocated range
-