13 lines
337 B
C#
13 lines
337 B
C#
namespace IM_API.Interface.Services
|
|
{
|
|
public interface ISequenceIdService
|
|
{
|
|
/// <summary>
|
|
/// 创建消息序号
|
|
/// </summary>
|
|
/// <param name="streamKey">聊天唯一标识/param>
|
|
/// <returns></returns>
|
|
Task<long> GetNextSquenceIdAsync(string streamKey);
|
|
}
|
|
}
|