We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afb5f02 commit 79082c7Copy full SHA for 79082c7
README.md
@@ -32,7 +32,7 @@ using CancellationTokenSource cts = new CancellationTokenSource(TimeSpan.FromSec
32
using var d2 = await asyncLock.WriterLockAsync("123", cts.Token);
33
34
//use writer lock scope to break long running reader lock
35
-using (var r1 = await lockEntity.ReaderLockAsync())
+using (ReaderReleaser r1 = await asyncLock.ReaderLockAsync())
36
{
37
//use reader lock
38
0 commit comments