Asynchronous Events
Asynchronous event handling in RCommon
Synchronous and Asynchronous events should not be confused with parallel task processing which governs thread management in .NET. e.g. await SomeOperationAsync();
Synchronous and Asynchronous events have more to do with the order in which the events are processed.
Implementation
It is very simply mark an event as asynchronous and there is no specific implementation required. We simply require the IAsyncEvent marker interface:
Last updated