All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.litongjava.tio.utils.mcid.McIdUtils Maven / Gradle / Ivy

There is a newer version: 3.7.3.v202400213-RELEASE
Show newest version
package com.litongjava.tio.utils.mcid;

import com.litongjava.tio.utils.hutool.RandomUtils;

public class McIdUtils {

  // 单例的 SnowflakeIdGenerator 实例
  private static final int mid = RandomUtils.nextInt(1, 255);
  private static final McIdGenerator generator = new McIdGenerator(mid);

  public static long id() {
    return generator.generateId();
  }
  
  public static int getMid() {
    return mid;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy