forked from ddrilling/AsbCloudServer
12 lines
220 B
C#
12 lines
220 B
C#
using System;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IReportsBackgroundQueue
|
|
{
|
|
int EnqueueTask(Action<int> action);
|
|
|
|
bool TryDequeue(out (Action<int> action, int id) item);
|
|
}
|
|
}
|