File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -219,17 +219,15 @@ link:./src/test/groovy/ch/petikoch/examples/mvvm_rxjava/example6[]
219
219
link:./src/main/java/ch/petikoch/examples/mvvm_rxjava/example6a[]
220
220
221
221
* Same as Example 6
222
- * But like in real world, there are sometimes exceptions during e.g. model (backend) method invoking's
222
+ * But like in real world, there are sometimes exceptions during e.g. model (backend) method calls
223
223
* How to handle them?
224
224
225
225
This is of course a challenging task: +
226
- How to combine results from asynchronous tasks? +
226
+ How to combine results from asynchronous tasks in general ? +
227
227
How to handle exceptions in those?
228
228
229
- This is a typical problem, which solves RxJava easily: It offers all the necessary API's.
230
- See e.g. https://github.com/ReactiveX/RxJava/wiki/Error-Handling-Operators or of course the `onError` `Action1` in `rx.Observable#subscribe(..)`.
231
-
232
- In this example, there is some code to illustrate those.
229
+ This is a typical problem which solves RxJava easily: It offers all the necessary API's. +
230
+ See e.g. https://github.com/ReactiveX/RxJava/wiki/Error-Handling-Operators or of course the `onError` in `rx.Observable#subscribe(..)`.
233
231
234
232
image::example6a.png[]
235
233
You can’t perform that action at this time.
0 commit comments