AsyncLock class¶
Defined in
Namespace: System.Reactive.Concurrency
Assembly: System.Reactive.dll
Full name: System.Reactive.Concurrency.AsyncLock
Modifiers: public sealed
Summary¶
Asynchronous lock.
Applies to
netstandard2.0
Class hierarchy
classDiagram
class AsyncLock
class IDisposable {
<>
}
IDisposable <|.. AsyncLock
Implements: IDisposable
Constructors¶
| Name | Summary |
|---|---|
| .ctor |
Methods¶
| Name | Summary |
|---|---|
| Wait | Queues the action for execution. If the caller acquires the lock and becomes the owner, the queue is processed. If the lock is already owned, the action is queued and will get ... |
| Dispose | Clears the work items in the queue and drops further work being queued. |