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
Copy file name to clipboardExpand all lines: CHANGES.md
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,26 @@
1
1
# RxJava Releases #
2
2
3
+
### Version 0.9.0 ([Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.rxjava%22%20AND%20v%3A%220.9.0%22)) ###
4
+
5
+
This release includes breaking changes that move all blocking operators (such as `single`, `last`, `forEach`) to `BlockingObservable`.
6
+
7
+
This means `Observable` has only non-blocking operators on it. The blocking operators can now be access via `.toBlockingObservable()` or `BlockingObservable.from(observable)`.
8
+
9
+
Notes and link to the discussion of this change can be found at https://github.com/Netflix/RxJava/pull/272.
10
+
11
+
*[Pull 272](https://github.com/Netflix/RxJava/pull/272) Move blocking operators into BlockingObservable
0 commit comments