Skip to content

Commit e330cbb

Browse files
committed
Linked to examples
1 parent bc7b9be commit e330cbb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Part 4 - Concurrency/3. Sequences of coincidence.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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
```
3737
0
3838
1
@@ -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]
@@ -166,7 +166,7 @@ left
166166
.take(10)
167167
.subscribe(System.out::println);
168168
```
169-
Output
169+
[Output](/tests/java/itrx/chapter4/coincidence/JoinExample.java)
170170
```
171171
L0 - R0
172172
L1 - R0
@@ -202,7 +202,7 @@ left
202202
.take(10)
203203
.subscribe(System.out::println);
204204
```
205-
Output
205+
[Output](/tests/java/itrx/chapter4/coincidence/JoinExample.java)
206206
```
207207
L0 - R0
208208
L0 - R1
@@ -256,7 +256,7 @@ left
256256
)
257257
.subscribe();
258258
```
259-
Output
259+
[Output](/tests/java/itrx/chapter4/coincidence/GroupJoinExample.java)
260260
```
261261
L0: [R0, R1, R2]
262262
L1: [R0, R1, R2]

0 commit comments

Comments
 (0)