btcpayserver/BTCPayServer/Services/IBackgroundJobClient.cs

12 lines
239 B
C#
Raw Normal View History

2020-06-29 04:44:35 +02:00
using System;
using System.Threading;
2019-01-16 11:14:45 +01:00
using System.Threading.Tasks;
namespace BTCPayServer.Services
{
public interface IBackgroundJobClient
{
void Schedule(Func<CancellationToken, Task> act, TimeSpan scheduledIn);
2019-01-16 11:14:45 +01:00
}
}