File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
src/main/java/io/reactivex Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,8 @@ public abstract class Single<T> implements SingleSource<T> {
116
116
/**
117
117
* Runs multiple SingleSources and signals the events of the first one that signals (cancelling
118
118
* the rest).
119
+ * <p>
120
+ * <img width="640" height="515" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.amb.png" alt="">
119
121
* <dl>
120
122
* <dt><b>Scheduler:</b></dt>
121
123
* <dd>{@code amb} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -136,6 +138,8 @@ public static <T> Single<T> amb(final Iterable<? extends SingleSource<? extends
136
138
/**
137
139
* Runs multiple SingleSources and signals the events of the first one that signals (cancelling
138
140
* the rest).
141
+ * <p>
142
+ * <img width="640" height="515" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.ambArray.png" alt="">
139
143
* <dl>
140
144
* <dt><b>Scheduler:</b></dt>
141
145
* <dd>{@code ambArray} does not operate by default on a particular {@link Scheduler}.</dd>
You can’t perform that action at this time.
0 commit comments