Don't know if this is the right channel, but does something an async task queue exist where I provide a coroutine scope in which callbacks can be scheduled to be executed sequentially or simultaneously?
c
Chris Lee
09/27/2025, 7:30 PM
this could be done with channels, where the channel contains the callbacks (“tasks”); you could configure buffering (or not) for channels), concurrency (how many coroutines) for task execution, error handling strategies, etc.