Skip to content

Commit d0038c9

Browse files
authored
Update How-To-Use-RxJava.md
Fix image links?
1 parent 21c2d0d commit d0038c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/How-To-Use-RxJava.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ onNext => value_14_xform
285285

286286
Here is a marble diagram that illustrates this transformation:
287287

288-
<img src="/Netflix/RxJava/wiki/images/rx-operators/Composition.1.v3.png" width="640" height="536" />
288+
<img src="/ReactiveX/RxJava/wiki/images/rx-operators/Composition.1.v3.png" width="640" height="536" />
289289

290290
This next example, in Clojure, consumes three asynchronous Observables, including a dependency from one to another, and emits a single response item by combining the items emitted by each of the three Observables with the [`zip`](http://reactivex.io/documentation/operators/zip.html) operator and then transforming the result with [`map`](http://reactivex.io/documentation/operators/map.html):
291291

@@ -333,7 +333,7 @@ The response looks like this:
333333

334334
And here is a marble diagram that illustrates how that code produces that response:
335335

336-
<img src="/Netflix/RxJava/wiki/images/rx-operators/Composition.2.v3.png" width="640" height="742" />
336+
<img src="/ReactiveX/RxJava/wiki/images/rx-operators/Composition.2.v3.png" width="640" height="742" />
337337

338338
The following example, in Groovy, comes from [Ben Christensen’s QCon presentation on the evolution of the Netflix API](https://speakerdeck.com/benjchristensen/evolution-of-the-netflix-api-qcon-sf-2013). It combines two Observables with the [`merge`](http://reactivex.io/documentation/operators/merge.html) operator, then uses the [`reduce`](http://reactivex.io/documentation/operators/reduce.html) operator to construct a single item out of the resulting sequence, then transforms that item with [`map`](http://reactivex.io/documentation/operators/map.html) before emitting it:
339339

@@ -350,7 +350,7 @@ public Observable getVideoSummary(APIVideo video) {
350350

351351
And here is a marble diagram that illustrates how that code uses the [`reduce`](http://reactivex.io/documentation/operators/reduce.html) operator to bring the results from multiple Observables together in one structure:
352352

353-
<img src="/Netflix/RxJava/wiki/images/rx-operators/Composition.3.v3.png" width="640" height="640" />
353+
<img src="/ReactiveX/RxJava/wiki/images/rx-operators/Composition.3.v3.png" width="640" height="640" />
354354

355355
## Error Handling
356356

0 commit comments

Comments
 (0)