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

com.github.hugh.IdSequence Maven / Gradle / Ivy

There is a newer version: 2.7.14
Show newest version
package com.github.hugh;

import com.github.hugh.id.Snowflake;
import com.github.hugh.support.instance.Instance;

/**
 * ID唯一生成器
 *
 * @author hugh
 * @version 1.0.0
 */
public class IdSequence {

    private IdSequence() {
    }

    /**
     * 雪花算法唯一ID
     *
     * @return String 19位数字字符串
     */
    public static String snowflake() {
        var snowflake = Instance.getInstance().singleton(Snowflake.class);
        return String.valueOf(snowflake.nextId());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy