mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
12 lines
239 B
C#
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);
|
|
}
|
|
}
|