I've got an observable: Observable.create<Boolean> {emitter = it}
, to which I push some values. I want it to publish a 'false' value, as soon as some specific time period has passed without any value being pushed to that emitter.
How is that possible with RxJava/Kotlin 2?