Hi folks, Can any of you show me what's the recome...
# coroutines
r
Hi folks, Can any of you show me what's the recomended way of scheduling a (async) task to happen in X minutes from current time? If possible in such a way that I can control executors. Thanks in advance.
o
Copy code
yourScopeWithDispatcher.launch {
    delay(<x minutes in millis>) // this can also take a Duration but that's experimental iirc
    // do task here
}