Skip to content

Commit fe451f5

Browse files
Release notes edits.
1 parent a12a9a6 commit fe451f5

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

language-adaptors/rxjava-scala/ReleaseNotes.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@ RxScala Release Notes
22
=====================
33

44
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.
810

911
Observer
1012
--------
1113

1214
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:
1517

1618
```scala
1719
trait Observer[-T] {

0 commit comments

Comments
 (0)