Skip to content

Instantly share code, notes, and snippets.

@mayojava
Created November 7, 2018 18:54
Show Gist options
  • Save mayojava/65c9801af8e6de6969bc5a4f6bb17e3a to your computer and use it in GitHub Desktop.
Save mayojava/65c9801af8e6de6969bc5a4f6bb17e3a to your computer and use it in GitHub Desktop.
Produce Coroutine Builder
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