reactivemarkets / toolbox-cpp

The Reactive C++ Toolbox is an open source library of C++20 components designed for efficient, asynchronous network applications on the Linux platform.
https://reactivemarkets.github.io/toolbox-cpp/
Other
21 stars 20 forks source link

feat(reactor): Add hooks for end of event dispatching #231

Closed markaylett closed 6 months ago

markaylett commented 6 months ago

Add support for hooks that are called after all i/o and timer events have been dispatched. These hooks are called, and only if, work done in the cycle is greater than zero. And they are always called before EndOfCycleNoWait hooks.

SDB-6783