Method and Description |
---|
rx.Observable.onBackpressureBlock()
The operator doesn't work properly with
Observable.subscribeOn(Scheduler) and is prone to
deadlocks. It will be removed/unavailable starting from 1.1. |
rx.Observable.onBackpressureBlock(int)
The operator doesn't work properly with
Observable.subscribeOn(Scheduler) and is prone to
deadlocks. It will be removed/unavailable starting from 1.1. |
rx.Observable.timer(long, long, TimeUnit)
use
Observable.interval(long, long, TimeUnit) instead |
rx.Observable.timer(long, long, TimeUnit, Scheduler) |