Method and Description |
---|
io.reactivex.Flowable.dematerialize()
in 2.2.4; inherently type-unsafe as it overrides the output generic type. Use
Flowable.dematerialize(Function) instead. |
io.reactivex.Observable.dematerialize()
in 2.2.4; inherently type-unsafe as it overrides the output generic type. Use
Observable.dematerialize(Function) instead. |
io.reactivex.processors.BehaviorProcessor.getValues()
in 2.1.14; put the result of
BehaviorProcessor.getValue() into an array manually, will be removed in 3.x |
io.reactivex.processors.AsyncProcessor.getValues()
in 2.1.14; put the result of
AsyncProcessor.getValue() into an array manually, will be removed in 3.x |
io.reactivex.subjects.BehaviorSubject.getValues()
in 2.1.14; put the result of
BehaviorSubject.getValue() into an array manually, will be removed in 3.x |
io.reactivex.subjects.AsyncSubject.getValues()
in 2.1.14; put the result of
AsyncSubject.getValue() into an array manually, will be removed in 3.x |
io.reactivex.processors.BehaviorProcessor.getValues(T[])
in 2.1.14; put the result of
BehaviorProcessor.getValue() into an array manually, will be removed in 3.x |
io.reactivex.processors.AsyncProcessor.getValues(T[])
in 2.1.14; put the result of
AsyncProcessor.getValue() into an array manually, will be removed in 3.x |
io.reactivex.subjects.BehaviorSubject.getValues(T[])
in 2.1.14; put the result of
BehaviorSubject.getValue() into an array manually, will be removed in 3.x |
io.reactivex.subjects.AsyncSubject.getValues(T[])
in 2.1.14; put the result of
AsyncSubject.getValue() into an array manually, will be removed in 3.x |
io.reactivex.Single.toCompletable()
see
Single.ignoreElement() instead, will be removed in 3.0 |