File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
language-adaptors/rxjava-scala Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -2,16 +2,18 @@ RxScala Release Notes
2
2
=====================
3
3
4
4
This release of the RxScala bindings builds on the previous 0.15 release to make the Rx bindings for Scala
5
- include all Rx types. In particular this release focuses on fleshing out the bindings for the ` Subject ` and ` Scheduler ` types.
6
- To makes these notes self-contained, we will start with the ` Observer[T] ` and ` Observable[T] ` traits
7
- that lay at the heart of Rx.
5
+ include all Rx types. In particular this release focuses on fleshing out the bindings for the ` Subject ` and ` Scheduler `
6
+ types, as well as aligning the constructor functions for ` Observable ` with those in the RxJava.
7
+
8
+ Expect to see ongoing additions to make the Scala binding match the equivalent underlying Java API,
9
+ as well as minor changes in the existing API as we keep fine-tuning the experience on our way to a V1.0 release.
8
10
9
11
Observer
10
12
--------
11
13
12
14
In this release we have made the ` asJavaObserver ` property in ` Observable[T] ` as well the the factory method in the
13
- companion object that takes an ` rx.Observer ` private to the Scala bindings package, thus properly hiding irrelevant
14
- implementation details from the user-facing API. The ` Observer[T] ` trait now looks like a clean, native Scala type:
15
+ companion object that takes an ` rx.Observer ` private to the Scala bindings package, thus properly hiding irrelevant
16
+ implementation details from the user-facing API. The ` Observer[T] ` trait now looks like a clean, native Scala type:
15
17
16
18
``` scala
17
19
trait Observer [- T ] {
You can’t perform that action at this time.
0 commit comments