You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ISnowWorker.go 217 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
1234567891011
  1. /*
  2. * 版权属于:yitter(yitter@126.com)
  3. * 代码编辑:guoyahao
  4. * 代码修订:yitter
  5. * 开源地址:https://gitee.com/yitter/idgenerator
  6. */
  7. package idgen
  8. type ISnowWorker interface {
  9. NextId() int64
  10. }

雪花算法中非常好用的数字ID生成器