Files
steves-bot/src/StevesBot.Worker/Threading/IAsyncLock.cs
T

6 lines
164 B
C#

namespace StevesBot.Worker.Threading;
internal interface IAsyncLock : IDisposable
{
Task<IDisposable> LockAsync(CancellationToken cancellationToken = default);
}