RxScala v0.26.2 Release Notes

Release Date: 2016-06-17 // almost 8 years ago
  • ๐Ÿš€ 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 Observables together (e.g., flatMap, concat), you may want to refrain from propagating error notifications until all of the Observables 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 Observables. Search for delayError in RxScalaDemo.scala for examples.

    Pull Requests

    Artifacts: Maven Central