btcpayserver/BTCPayServer/Services/IBackgroundJobClient.cs

14 lines
295 B
C#
Raw Normal View History

2019-01-16 19:14:45 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
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
}
}