mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
22 lines
477 B
C#
22 lines
477 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reactive.Disposables;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wabbajack.Common
|
|
{
|
|
public class AsyncLock
|
|
{
|
|
private SemaphoreSlim _lock = new SemaphoreSlim(1, 1);
|
|
|
|
public async Task<IDisposable> Wait()
|
|
{
|
|
await _lock.WaitAsync();
|
|
return Disposable.Create(() => _lock.Release());
|
|
}
|
|
}
|
|
}
|