lanlingxian_ziranziyuanhegu.../Infrastructure/Snowflake/Contract/ISnowWorker.cs

23 lines
581 B
C#
Raw Normal View History

2025-05-19 14:01:14 +08:00
/*
* yitter(yitter@126.com)
* https://github.com/yitter/idgenerator
* MIT
* 使
*
*
*/
using System;
using System.Collections.Generic;
using System.Text;
namespace Yitter.IdGenerator
{
internal interface ISnowWorker
{
//Action<OverCostActionArg> GenAction { get; set; }
long NextId();
}
}