@@ -166,6 +166,8 @@ public static <T> Single<T> ambArray(final SingleSource<? extends T>... sources)
166
166
/**
167
167
* Concatenate the single values, in a non-overlapping fashion, of the SingleSources provided by
168
168
* an Iterable sequence.
169
+ * <p>
170
+ * <img width="640" height="319" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.concat.i.png" alt="">
169
171
* <dl>
170
172
* <dt><b>Backpressure:</b></dt>
171
173
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer.</dd>
@@ -187,6 +189,8 @@ public static <T> Flowable<T> concat(Iterable<? extends SingleSource<? extends T
187
189
/**
188
190
* Concatenate the single values, in a non-overlapping fashion, of the SingleSources provided by
189
191
* an Observable sequence.
192
+ * <p>
193
+ * <img width="640" height="319" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.concat.o.png" alt="">
190
194
* <dl>
191
195
* <dt><b>Scheduler:</b></dt>
192
196
* <dd>{@code concat} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -207,6 +211,8 @@ public static <T> Observable<T> concat(ObservableSource<? extends SingleSource<?
207
211
/**
208
212
* Concatenate the single values, in a non-overlapping fashion, of the SingleSources provided by
209
213
* a Publisher sequence.
214
+ * <p>
215
+ * <img width="640" height="308" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.concat.p.png" alt="">
210
216
* <dl>
211
217
* <dt><b>Backpressure:</b></dt>
212
218
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer
@@ -229,6 +235,8 @@ public static <T> Flowable<T> concat(Publisher<? extends SingleSource<? extends
229
235
/**
230
236
* Concatenate the single values, in a non-overlapping fashion, of the SingleSources provided by
231
237
* a Publisher sequence and prefetched by the specified amount.
238
+ * <p>
239
+ * <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.concat.pn.png" alt="">
232
240
* <dl>
233
241
* <dt><b>Backpressure:</b></dt>
234
242
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer
@@ -255,7 +263,7 @@ public static <T> Flowable<T> concat(Publisher<? extends SingleSource<? extends
255
263
/**
256
264
* Returns a Flowable that emits the items emitted by two Singles, one after the other.
257
265
* <p>
258
- * <img width="640" height="380 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.concat.png" alt="">
266
+ * <img width="640" height="366 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.concat.png" alt="">
259
267
* <dl>
260
268
* <dt><b>Backpressure:</b></dt>
261
269
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer.</dd>
@@ -286,7 +294,7 @@ public static <T> Flowable<T> concat(
286
294
/**
287
295
* Returns a Flowable that emits the items emitted by three Singles, one after the other.
288
296
* <p>
289
- * <img width="640" height="380 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.concat.png" alt="">
297
+ * <img width="640" height="366 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.concat.o3 .png" alt="">
290
298
* <dl>
291
299
* <dt><b>Backpressure:</b></dt>
292
300
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer.</dd>
@@ -321,7 +329,7 @@ public static <T> Flowable<T> concat(
321
329
/**
322
330
* Returns a Flowable that emits the items emitted by four Singles, one after the other.
323
331
* <p>
324
- * <img width="640" height="380 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.concat.png" alt="">
332
+ * <img width="640" height="362 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.concat.o4 .png" alt="">
325
333
* <dl>
326
334
* <dt><b>Backpressure:</b></dt>
327
335
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer.</dd>
@@ -359,6 +367,8 @@ public static <T> Flowable<T> concat(
359
367
/**
360
368
* Concatenate the single values, in a non-overlapping fashion, of the SingleSources provided in
361
369
* an array.
370
+ * <p>
371
+ * <img width="640" height="319" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.concatArray.png" alt="">
362
372
* <dl>
363
373
* <dt><b>Backpressure:</b></dt>
364
374
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer.</dd>
0 commit comments