1
0
mirror of synced 2026-02-18 10:57:56 +08:00
Files
SnowFlake-IdGenerator/C/source/idgen/IdGenOptions.h
2021-03-27 22:00:52 +08:00

32 lines
1.1 KiB
C
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* 版权属于yitter(yitter@126.com)
* 开源地址https://gitee.com/yitter/idgenerator
*/
#pragma once
#include <stdint.h>
typedef struct IdGenOptions {
/// 雪花计算方法,1-漂移算法|2-传统算法默认1
uint8_t Method;
/// 基础时间ms单位不能超过当前系统时间
uint64_t BaseTime;
/// 机器码,与 WorkerIdBitLength 有关系
uint32_t WorkerId;
/// 机器码位长范围1-21要求序列数位长+机器码位长不超过22
uint8_t WorkerIdBitLength;
/// 序列数位长范围2-21要求序列数位长+机器码位长不超过22
uint8_t SeqBitLength;
/// 最大序列数(含),(由 SeqBitLength 计算的最大值)
uint32_t MaxSeqNumber;
/// 最小序列数默认5不小于5不大于 MaxSeqNumber
uint32_t MinSeqNumber;
/// 最大漂移次数默认2000推荐范围 500-20000与计算能力有关
uint32_t TopOverCostCount;
} IdGeneratorOptions;
extern IdGeneratorOptions BuildIdGenOptions(uint32_t workerId);