Signal Type
One-shot async signal. Wraps TaskCompletionSource{T} for idiomatic F# async coordination.
Thread-safe — uses RunContinuationsAsynchronously to avoid inline continuations.
Instance members
| Instance member |
Description
|
Full Usage:
this.IsSet
Returns: bool
|
Whether the signal has been set.
|
Full Usage:
this.Set
|
Completes the signal, releasing all waiters. Idempotent. |
Returns a task that completes when the signal is set.
|
TDesu.FSharp