DD.WellWorkover.Cloud/AsbCloudApp/Services/IReportsBackgroundQueue.cs

12 lines
220 B
C#
Raw Normal View History

using System;
namespace AsbCloudApp.Services
{
public interface IReportsBackgroundQueue
{
2021-05-20 12:38:25 +05:00
int EnqueueTask(Action<int> action);
2021-05-20 12:38:25 +05:00
bool TryDequeue(out (Action<int> action, int id) item);
}
}