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