Async/await implementation of a ManualResetEvent More...
Public Member Functions | |
Task | WaitAsync () |
Get awaitable task for the event More... | |
void | Set () |
Set the event, unblocking any code awaiting the event More... | |
void | Reset () |
Reset the event, preparing it for reuse More... | |
Async/await implementation of a ManualResetEvent
Definition at line 19 of file AsyncManualResetEvent.cs.
void Csla.Threading.AsyncManualResetEvent.Reset | ( | ) |
Reset the event, preparing it for reuse
Definition at line 36 of file AsyncManualResetEvent.cs.
void Csla.Threading.AsyncManualResetEvent.Set | ( | ) |
Set the event, unblocking any code awaiting the event
Definition at line 31 of file AsyncManualResetEvent.cs.
Task Csla.Threading.AsyncManualResetEvent.WaitAsync | ( | ) |
Get awaitable task for the event
Definition at line 26 of file AsyncManualResetEvent.cs.