2024-10-25 14:31:50 -04:00
|
|
|
// Copyright (C) 2024 Intro-Skipper contributors <intro-skipper.org>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-only.
|
2024-10-25 14:15:12 -04:00
|
|
|
|
2024-04-16 18:19:05 +02:00
|
|
|
using System;
|
|
|
|
using System.Threading;
|
2024-10-19 22:49:47 +02:00
|
|
|
using System.Threading.Tasks;
|
2024-04-16 18:19:05 +02:00
|
|
|
|
2024-10-19 23:50:41 +02:00
|
|
|
namespace IntroSkipper.ScheduledTasks;
|
2024-04-16 18:19:05 +02:00
|
|
|
|
|
|
|
internal sealed class ScheduledTaskSemaphore : IDisposable
|
|
|
|
{
|
2024-09-10 18:08:42 +02:00
|
|
|
private static readonly SemaphoreSlim _semaphore = new(1, 1);
|
2024-04-16 18:19:05 +02:00
|
|
|
|
|
|
|
private ScheduledTaskSemaphore()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2024-10-19 22:49:47 +02:00
|
|
|
public static async Task<IDisposable> AcquireAsync(CancellationToken cancellationToken)
|
2024-04-16 18:19:05 +02:00
|
|
|
{
|
2024-10-19 22:49:47 +02:00
|
|
|
await _semaphore.WaitAsync(cancellationToken).ConfigureAwait(false);
|
2024-05-10 06:35:52 +02:00
|
|
|
return new ScheduledTaskSemaphore();
|
2024-04-16 18:19:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
2024-09-23 19:45:16 +02:00
|
|
|
_semaphore.Release();
|
2024-04-16 18:19:05 +02:00
|
|
|
}
|
|
|
|
}
|