File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Observable
3232 .window(3 ,1 ))
3333 .subscribe(System . out:: println);
3434```
35- Output
35+ [ Output] ( /tests/java/itrx/chapter4/coincidence/WindowExample.java )
3636```
37370
38381
@@ -56,7 +56,7 @@ Observable.range(0, 5)
5656 .flatMap(o - > o. toList())
5757 .subscribe(System . out:: println);
5858```
59- Output
59+ [ Output] ( /tests/java/itrx/chapter4/coincidence/WindowExample.java )
6060```
6161[0, 1, 2]
6262[1, 2, 3]
@@ -84,7 +84,7 @@ Observable.interval(100, TimeUnit.MILLISECONDS)
8484 .flatMap(o - > o. toList())
8585 .subscribe(System . out:: println);
8686```
87- Output
87+ [ Output] ( /tests/java/itrx/chapter4/coincidence/WindowExample.java )
8888```
8989[0, 1]
9090[0, 1, 2]
@@ -117,7 +117,7 @@ Observable.interval(100, TimeUnit.MILLISECONDS)
117117 .flatMap(o - > o. toList())
118118 .subscribe(System . out:: println);
119119```
120- Output
120+ [ Output] ( /tests/java/itrx/chapter4/coincidence/WindowExample.java )
121121```
122122[1, 2]
123123[2, 3]
166166 .take(10 )
167167 .subscribe(System . out:: println);
168168```
169- Output
169+ [ Output] ( /tests/java/itrx/chapter4/coincidence/JoinExample.java )
170170```
171171L0 - R0
172172L1 - R0
202202 .take(10 )
203203 .subscribe(System . out:: println);
204204```
205- Output
205+ [ Output] ( /tests/java/itrx/chapter4/coincidence/JoinExample.java )
206206```
207207L0 - R0
208208L0 - R1
256256 )
257257 .subscribe();
258258```
259- Output
259+ [ Output] ( /tests/java/itrx/chapter4/coincidence/GroupJoinExample.java )
260260```
261261L0: [R0, R1, R2]
262262L1: [R0, R1, R2]
You can’t perform that action at this time.
0 commit comments