9 lines
233 B
C#
9 lines
233 B
C#
namespace ZeroFramework.DeviceCenter.Infrastructure.Idempotency
|
|
{
|
|
public interface IRequestManager
|
|
{
|
|
Task<bool> ExistAsync(string commandId);
|
|
|
|
Task CreateRequestForCommandAsync<T>(string commandId);
|
|
}
|
|
} |