We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bef523 commit 81a2f96Copy full SHA for 81a2f96
src/test/java/rx/schedulers/Test.java
@@ -0,0 +1,14 @@
1
+package rx.schedulers;
2
+
3
+import javafx.beans.binding.Binding;
4
+import rx.Observable;
5
+import rx.subscribers.JavaFxSubscriber;
6
7
+public class Test {
8
+ private void test() {
9
+ Observable<String> source = Observable.just("Alpha","Beta","Gamma");
10
11
+ Binding binding = JavaFxSubscriber.toBinding(source.map(String::length));
12
13
+ }
14
+}
0 commit comments