Table of Contents

Struct ExclusiveLock

Namespace
LfrlAnvil.Async
Assembly
LfrlAnvil.Core.dll

A lightweight, disposable object representing an acquired monitor lock.

public readonly struct ExclusiveLock : IDisposable
Implements
Inherited Members
Extension Methods

Methods

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

public void Dispose()

Remarks

Releases previously acquired monitor lock.

Enter(object)

Acquires an exclusive lock and creates a new ExclusiveLock.

public static ExclusiveLock Enter(object sync)

Parameters

sync object

An object on which to acquire the monitor lock.

Returns

ExclusiveLock

A disposable ExclusiveLock instance.