Last active
August 26, 2020 18:21
-
-
Save GianpaMX/426a96eabdb95f6b351622c75775a8f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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