-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Threading_AsyncLock_AcquireSync_2
Andrew Koryavchenko edited this page Jun 17, 2018
·
1 revision
Synchronously acquires async lock.
Namespace: CodeJam.Threading
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public IDisposable AcquireSync(
int timeout,
CancellationToken cancellation
)
VB
Public Function AcquireSync (
timeout As Integer,
cancellation As CancellationToken
) As IDisposable
F#
member AcquireSync :
timeout : int *
cancellation : CancellationToken -> IDisposable
- timeout
- Type: System.Int32
A number of milliseconds that represents the timeout to wait if lock already acquired, a -1 to wait indefinitely, or a 0 to return immediately. - cancellation
- Type: System.Threading.CancellationToken
The CancellationToken token to observe.
Type: IDisposable
An IDisposable to release the lock.
Exception | Condition |
---|---|
OperationCanceledException | The token has had cancellation requested. |
TimeoutException | The timeout has expired. |
AsyncLock Class
AcquireSync Overload
CodeJam.Threading Namespace