You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This release contains mostly internal cleanups, reinforced Observable-protocol adherence and minor javadoc fixes.
Warning: the backpressure-behavior of PublishSubject has been changed. In earlier versions, when you called PublishSubject.onNext too frequently, that usually triggered a MissingBackpressureException in some downstream operator (observeOn, zip, etc.) and often it was not obvious who to blame for it. With 1.1.9, PublishSubject now tracks the request amounts of each of its children and refuses to overflow them, signalling a MissingBackpressureException to them instead which now points to the right operator.
Uh oh!
There was an error while loading. Please reload this page.
Version 1.1.9 - August 12, 2016 (Maven)
This release contains mostly internal cleanups, reinforced Observable-protocol adherence and minor javadoc fixes.
Warning: the backpressure-behavior of
PublishSubject
has been changed. In earlier versions, when you calledPublishSubject.onNext
too frequently, that usually triggered aMissingBackpressureException
in some downstream operator (observeOn
,zip
, etc.) and often it was not obvious who to blame for it. With 1.1.9,PublishSubject
now tracks the request amounts of each of its children and refuses to overflow them, signalling aMissingBackpressureException
to them instead which now points to the right operator.API enhancements
Single.flatMapCompletable
.PublishSubject
now signalsMissingBackpressureException
when backpressured.Observable.sorted()
+ overloads: sorts and re-emits each element of a finite sequence.concatDelayError
multiple arguments.Observable.concat(Iterable)
overload.TestSubscriber.assertValuesAndClear
Performance enhancements
amb
.autoConnect
.join
.groupJoin
.skip
with time.doOnEach
.MultipleAssignmentSubscription
andSerialSubscription
Bugfixes
Schedulers.io()
workers now wait until a blocking task finishes before becoming available again.all
multiple terminal events.repeatWhen
andretryWhen
when the resubscription happens.PublishSubject
now checks for unsubscribed child while dispatching events.any
multiple terminal events.reduce
multiple terminal events.onBackpressureDrop
multiple terminal events.collect
multiple terminal events.toMap
multiple terminal events and backpressure behavior.toMultimap
multiple terminal events .Schedulers.from()
to callRxJavaHooks.onScheduleAction
.The text was updated successfully, but these errors were encountered: