Skip to content

Instantly share code, notes, and snippets.

@GianpaMX
Last active August 26, 2020 18:21
Show Gist options
  • Save GianpaMX/426a96eabdb95f6b351622c75775a8f7 to your computer and use it in GitHub Desktop.
Save GianpaMX/426a96eabdb95f6b351622c75775a8f7 to your computer and use it in GitHub Desktop.
@Provides
fun provideTimeApi() = object : TimeApi {
override fun now() = Instant.now().epochSecond.toInt()
override fun ticker(): Flow<Int> = kotlinx.coroutines.channels
.ticker(1_000)
.receiveAsFlow()
.map { now() }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment