Skip to content

Instantly share code, notes, and snippets.

@Skyyo
Created April 18, 2021 20:15
Show Gist options
  • Save Skyyo/d7e251879ef4c6693d0a6d578b6e6c39 to your computer and use it in GitHub Desktop.
Save Skyyo/d7e251879ef4c6693d0a6d578b6e6c39 to your computer and use it in GitHub Desktop.
private fun provideCurrencyUpdateFlow(): Flow<Int> {
return flow {
repeat(10000) {
delay(Random.nextLong(500L, 2500L))
emit(Random.nextInt(0, 100))
}
}.flowOn(Dispatchers.Default).distinctUntilChanged()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment