initValue = this.minValue;
} else {
final String msg = this.id + " 序号生成器的序号已经达到最大值:" + maxValue
+ " 了!系统无法在分配序号!";
logger.error(msg);
throw new InitSequenceGeneratorException(msg);
}
}
currCount = initValue;
maxCount = currCount + cache;
maxCount = java.lang.Math.min(maxCount, maxValue);