Skip to content

Instantly share code, notes, and snippets.

@tdcolvin
Last active March 12, 2024 14:27
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 tdcolvin/03bf5ba5a2ab72041d8e1f273ddeb471 to your computer and use it in GitHub Desktop.
Save tdcolvin/03bf5ba5a2ab72041d8e1f273ddeb471 to your computer and use it in GitHub Desktop.
viewModelScope.launch {
// Time passing before we start collecting...
delay(4000)
// Start collecting the flow
sharedFlow.collect {
println(it)
}
}
// Output: 7, 8, 9, 10, ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment