chore: port over events and update converter to handle them

This commit is contained in:
Stevan Freeborn
2025-05-08 23:24:20 -05:00
parent 9f35394528
commit 7f6c9d5624
9 changed files with 151 additions and 1 deletions
@@ -7,6 +7,8 @@ internal sealed class LockReleaser : IDisposable
public LockReleaser(SemaphoreSlim semaphore)
{
ArgumentNullException.ThrowIfNull(semaphore);
_semaphore = semaphore;
}