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
The emitter API (such as FlowableEmitter, SingleEmitter, etc.) now features a new method, tryOnError that tries to emit the Throwable if the sequence is not cancelled/disposed. Unlike the regular onError, if the downstream is no longer willing to accept events, the method returns false and doesn't signal an UndeliverableException.
Version 2.1.1 - June 21, 2017 (Maven)
Notable changes
The emitter API (such as
FlowableEmitter
,SingleEmitter
, etc.) now features a new method,tryOnError
that tries to emit theThrowable
if the sequence is not cancelled/disposed. Unlike the regularonError
, if the downstream is no longer willing to accept events, the method returns false and doesn't signal anUndeliverableException
.API enhancements
tryOnError
tocreate/XEmitter
API.subscribeOn
overload to avoid same-pool deadlock with create.Documentation changes
Maybe.toSingle
.FunctionX
Observable
Action1
withConsumer
in docs.SingleFlatMapIterableObservable
.Single.doAfterTeminate
mentioningdoAfterSuccess
.DefaultObserver
javadoc fix: use subscribe, remove disposable code.DefaultSubscriber
javadoc sample fix.Observable.reduce()
andObservable.reduceWith()
.Single.delay
documentation.Bugfixes
interval+trampoline
can be stopped.SingleMap
not allow map function return null.doOnNext
failure not triggeringdoOnError
when fused.buffer(time, maxSize)
duplicating buffers on time-size race.Other
VolatileSizeArrayList
asRandomAccess
listBaseTestConsumer.assertValueSequence
.rx2.buffer-size
to 1.The text was updated successfully, but these errors were encountered: