btcpayserver/BTCPayServer/Services/IBackgroundJobClient.cs

12 lines
239 B
C#

using System;
using System.Threading;
using System.Threading.Tasks;
namespace BTCPayServer.Services
{
public interface IBackgroundJobClient
{
void Schedule(Func<CancellationToken, Task> act, TimeSpan scheduledIn);
}
}