launchIO

fun CoroutineScope.launchIO(block: suspend CoroutineScope.() -> Unit): Job(source)

Handy equivalent of CoroutineScope.launch to launch directly with the ioDispatcher.

Return

the Job which will be launched by this method.

See also