mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
17 lines
397 B
C#
17 lines
397 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Teknik.Utilities
|
|
{
|
|
public interface IBackgroundTaskQueue
|
|
{
|
|
void QueueBackgroundWorkItem(Func<CancellationToken, Task> workItem);
|
|
|
|
Task<Func<CancellationToken, Task>> DequeueAsync(
|
|
CancellationToken cancellationToken);
|
|
}
|
|
}
|