mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 18:47:55 +08:00
27
Infrastructure/Test/TestSnowflake.cs
Normal file
27
Infrastructure/Test/TestSnowflake.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using NUnit.Framework;
|
||||
using Yitter.IdGenerator;
|
||||
|
||||
namespace Infrastructure.Test
|
||||
{
|
||||
class TestSnowflake
|
||||
{
|
||||
[Test]
|
||||
public void Generate()
|
||||
{
|
||||
// 全局初始化设置WorkerId,默认最大2^16-1。(初始化过程全局只需一次,且必须最先设置)
|
||||
var options = new IdGeneratorOptions(){ WorkerId = 1};
|
||||
IIdGenerator IdHelper = new YitIdGenerator(options);
|
||||
|
||||
// 初始化以后,就可以在需要的地方调用方法生成ID。
|
||||
long val =IdHelper.NewLong();
|
||||
int val2 = (int)val;
|
||||
|
||||
Console.WriteLine($"val:{val}/int:{val2}");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user