Created
November 7, 2018 18:54
-
-
Save mayojava/65c9801af8e6de6969bc5a4f6bb17e3a to your computer and use it in GitHub Desktop.
Produce Coroutine Builder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public fun <E> CoroutineScope.produce( | |
context: CoroutineContext = EmptyCoroutineContext, | |
capacity: Int = 0, | |
block: suspend ProducerScope<E>.() -> Unit | |
): ReceiveChannel<E> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment