类 SnowIdGenerator
java.lang.Object
cn.zhxu.toys.concurrent.SnowIdGenerator
简单的雪花 ID(非常规雪花)生成器
| 1 bits | 41 bits | 10 bits | 12 bits |
符号位0 时间戳 机器码 序列号
-
构造器概要
构造器构造器说明SnowIdGenerator(long machineId) SnowIdGenerator(long machineId, int timeRSBits) SnowIdGenerator(long machineId, int machineBits, int serialBits, int timeRSBits) -
方法概要
-
构造器详细资料
-
SnowIdGenerator
public SnowIdGenerator(long machineId) -
SnowIdGenerator
public SnowIdGenerator(long machineId, int timeRSBits) -
SnowIdGenerator
public SnowIdGenerator(long machineId, int machineBits, int serialBits, int timeRSBits)
-
-
方法详细资料
-
nextId
public long nextId()
-