Skip to content

Commit b3700d1

Browse files
committed
Linked to examples
1 parent c6092d9 commit b3700d1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Part 3 - Taming the sequence/3. Advanced error handling.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ values
2323
.onErrorReturn(e -> "Error: " + e.getMessage())
2424
.subscribe(v -> System.out.println(v));
2525
```
26-
Output
26+
[Output](/tests/java/itrx/chapter3/error/ResumeExample.java)
2727
```
2828
Rx
2929
is
@@ -56,7 +56,7 @@ values
5656
.onErrorResumeNext(Observable.just(Integer.MAX_VALUE))
5757
.subscribe(new PrintSubscriber("with onError: "));
5858
```
59-
Output
59+
[Output](/tests/java/itrx/chapter3/error/ResumeExample.java)
6060
```
6161
with onError: 1
6262
with onError: 2
@@ -113,7 +113,7 @@ values
113113
.retry(1)
114114
.subscribe(v -> System.out.println(v));
115115
```
116-
Output
116+
[Output](/tests/java/itrx/chapter3/error/RetryExample.java)
117117
```
118118
0
119119
13
@@ -159,7 +159,7 @@ source.retryWhen((o) -> o
159159
System.out::println,
160160
System.out::println);
161161
```
162-
Output
162+
[Output](/tests/java/itrx/chapter3/error/RetryWhenExample.java)
163163
```
164164
TimeInterval [intervalInMilliseconds=21, value=1]
165165
TimeInterval [intervalInMilliseconds=0, value=2]
@@ -207,7 +207,7 @@ values
207207
v -> System.out.println(v),
208208
e -> System.out.println(e));
209209
```
210-
Output
210+
[Output](/tests/java/itrx/chapter3/error/UsingExample.java)
211211
```
212212
Leased: MyResource
213213
M

0 commit comments

Comments
 (0)