OpenAuth.Net/Infrastructure/Snowflake/Contract/ISnowWorker.cs

23 lines
578 B
C#
Raw Normal View History

2021-03-29 23:35:02 +08:00
/*
* yitter(yitter@126.com)
* https://gitee.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();
}
}