OpenAuth.Net/Infrastructure/Snowflake/ISnowWorker.cs

14 lines
233 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace Yitter.IdGenerator
{
internal interface ISnowWorker
{
Action<OverCostActionArg> GenAction { get; set; }
long NextId();
}
}