Files
clio/src
Alex Kremer 285d4e6e9b feat: Repeating operations for util::async (#1776)
Async framework needed a way to do repeating operations (think simplest
cases like AmendmentBlockHandler).
This PR implements the **absolute minimum**, barebones repeating
operations that
- Can't return any values (void)
- Do not take any arguments in the user-provided function
- Can't be scheduled (i.e. a delay before starting repeating)
- Can't be stopped from inside the user block of code (i.e. does not
have stop token or anything like that)
- Can be stopped through the RepeatedOperation's `abort()` function (but
not from the user-provided repeating function)
2024-12-20 13:24:01 +00:00
..
2024-12-18 13:51:39 +00:00
2024-12-17 14:50:51 +00:00
2024-12-18 13:51:39 +00:00
2024-11-26 13:56:25 +00:00
2024-12-18 11:43:53 +00:00