All Downloads are FREE. Search and download functionalities are using the official Maven repository.

utility.ReceiveChannel.kt Maven / Gradle / Ivy

There is a newer version: 0.9.27
Show newest version
package com.github.fluidsonic.baku

import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.GlobalScope
import kotlinx.coroutines.channels.produce


fun  Iterable.toChannel() =
	GlobalScope.produce { forEach { send(it) } }


fun  CoroutineScope.emptyReceiveChannel() =
	produce { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy