Synchronous Events
Synchronous event handling in RCommon.
Last updated
Synchronous event handling in RCommon.
Last updated
Oftentimes, applications require events to be handled in a specific order. Synchronous events are quite simply events which are processed in a synchronous and ordered manner. That is to say, first-in-first-out. This is in contrast to which can be processed efficiently but without respect for order.
It is very simply mark an event as synchronous and there is no specific implementation required. We simply require the ISyncEvent marker interface: