Hi. If I understand that document properly (no marble there you see), then you can achieve a similar effect by onBackpressurLatest before flatMap(maxConcurrency = 1):
Observable.interval(0, 1, TimeUnit.SECONDS)
.onBackpressureLatest()
.flatMap(v -> Observable.timer(1900, TimeUnit.MILLISECONDS), 1)
.take(10)
.toBlocking()
.subscribe();