25 lines
529 B
C#
25 lines
529 B
C#
using System;
|
|
using System.Threading;
|
|
|
|
namespace ConfusedPolarBear.Plugin.IntroSkipper.ScheduledTasks;
|
|
|
|
internal sealed class ScheduledTaskSemaphore : IDisposable
|
|
{
|
|
private static readonly SemaphoreSlim _semaphore = new(1, 1);
|
|
|
|
private ScheduledTaskSemaphore()
|
|
{
|
|
}
|
|
|
|
public static IDisposable Acquire(CancellationToken cancellationToken)
|
|
{
|
|
_semaphore.Wait(cancellationToken);
|
|
return new ScheduledTaskSemaphore();
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_semaphore.Release();
|
|
}
|
|
}
|