It simply means that the function delegates to the...
# coroutines
e
It simply means that the function delegates to the
CoroutineDispatcher
. For example, if you are running your coroutines under Android
UI
dispatcher, then it users Android-specific API to schedule execution after a specified time interval passes.
a
@elizarov thanks