mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-21 14:04:12 +01:00
11 lines
239 B
C#
11 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);
|
|
}
|
|
}
|