Skip to content

Instantly share code, notes, and snippets.

View fernandospr's full-sized avatar

Fernando Sproviero fernandospr

  • Ciudad de Buenos Aires, Argentina
View GitHub Profile
@fernandospr
fernandospr / CountdownTimer.kt
Last active May 10, 2024 18:14
Testing RX operations with delay
fun countdownTimer(
duration: Long,
scheduler: Scheduler = Schedulers.io()
) = Observable.interval(1, TimeUnit.SECONDS, scheduler)
.takeWhile { it < duration }
.map { duration - it }