0.26.2
This release upgrades RxJava to 1.1.6 and adds the new experimental ErrorDelayingObservable
class.
What is the new ErrorDelayingObservable
class?
ErrorDelayingObservable
contains a variety of operators that support delaying errors. Sometimes when you compose multiple Observable
s together (e.g., flatMap
, concat
), you may want to refrain from propagating error notifications until all of the Observable
s have finished emitting items. In such cases, you can call Observable.delayError
to get an ErrorDelayingObservable
and use the ErrorDelayingObservable
's methods to compose your Observable
s. Search for delayError
in RxScalaDemo.scala for examples.
Pull Requests
- Pull 193 Reimplement tail, to and toMultimap
- Pull 194 Bump to RxJava 1.1.5
- Pull 196 Deprecate Observable.create
- Pull 197 Bump to RxJava 1.1.6
Artifacts: Maven Central