btcpayserver/BTCPayServer/Services/IBackgroundJobClient.cs

12 lines
239 B
C#
Raw Normal View History

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