Skip to content

Instantly share code, notes, and snippets.

@NoNews

NoNews/Flow.kt Secret

Created January 2, 2022 12:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NoNews/1617c96d6194ad02006ecb9669e42252 to your computer and use it in GitHub Desktop.
Save NoNews/1617c96d6194ad02006ecb9669e42252 to your computer and use it in GitHub Desktop.
public interface Flow<out T> {
public suspend fun collect(collector: FlowCollector<T>)
}
public fun interface FlowCollector<in T> {
public suspend fun emit(value: T)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment