1.1.10
The release contains a few javadoc and internal cleanups, some enhancements and some deprecations.
Notable renames:
fromAsync
is nowfromEmitter
rx.Completable.CompletableSubscriber
is nowrx.CompletableSubscriber
API enhancements
- Pull 4423: add free-form conversion operator
to(Func1)
toObservable
,Single
andCompletable
. - Pull 4425: Rename
Completable
helper interfaces by dropping theCompletable
prefix, moverx.Completable.CompletableSubscriber
torx.CompletableSubscriber
. - Pull 4442: Rename
fromAsync
tofromEmitter
. - Pull 4452: Enhance generics on Observable.onErrorResumeNext and onErrorReturn
- Pull 4442: Add
Completable.fromEmitter
- Pull 4453: Remove
throws InterruptedException
fromTestSubscriber.awaitValueCount()
- Pull 4460: Add
Completable.doOnEach(Action1)
- Pull 4461: Add
Single.doOnEach
Deprecations
- Pull 4425: Deprecate
CompletableOnSubscribe
,CompletableOperator
andCompletableTransformer
and rename them by dropping theCompletable
prefix - Pull 4442: Deprecate
Observable.fromAsync
by renaming it toObservable.fromEmitter
. - Pull 4466: Deprecate
Notification.createOnCompleted(Class)