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[]
219219link:./src/main/java/ch/petikoch/examples/mvvm_rxjava/example6a[]
220220
221221* 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
223223* How to handle them?
224224
225225This is of course a challenging task: +
226- How to combine results from asynchronous tasks? +
226+ How to combine results from asynchronous tasks in general ? +
227227How to handle exceptions in those?
228228
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(..)`.
233231
234232image::example6a.png[]
235233
You can’t perform that action at this time.
0 commit comments