Hello, do we have something like coroutines job e...
# coroutines
a
Hello, do we have something like coroutines job executor? Or meby someone already write thing like that? Idea is have queue or another structure of coroutine jobs and execute them at concrete time, in other words - coroutines scheduler
o
there's nothing for executing it at a timestamp, but you could approximate it by adding an appropriate
delay
to the start of the coroutine
a
Okay, thx
d
If you're running on the JVM could you use
ScheduledExecutorService
with a regular task to execute
myParentScope.launch { someCoroutineWork }
?