@@ -111,7 +111,7 @@ public static <T> Observable<T> create(OnSubscribe<T> f) {
111
111
* {@link Observable#create(AsyncOnSubscribe) asynchronous overload}.
112
112
*
113
113
* <p>
114
- * <img width="640 " height="200 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/create-sync.png" alt="">
114
+ * <img width="527 " height="262 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/create-sync.png" alt="">
115
115
* <p>
116
116
* See <a href="http://go.microsoft.com/fwlink/?LinkID=205219">Rx Design Guidelines (PDF)</a> for detailed
117
117
* information.
@@ -153,7 +153,7 @@ public static <S, T> Observable<T> create(SyncOnSubscribe<S, T> syncOnSubscribe)
153
153
* with the {@link Observable#create(SyncOnSubscribe) synchronous overload}.
154
154
*
155
155
* <p>
156
- * <img width="640 " height="200 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/create-async.png" alt="">
156
+ * <img width="527 " height="262 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/create-async.png" alt="">
157
157
* <p>
158
158
* See <a href="http://go.microsoft.com/fwlink/?LinkID=205219">Rx Design Guidelines (PDF)</a> for detailed
159
159
* information.
@@ -323,7 +323,7 @@ public Single<T> toSingle() {
323
323
* {@code ignoreAllElements()}) and calls onCompleted when this source observable calls
324
324
* onCompleted. Error terminal events are propagated.
325
325
* <p>
326
- * <img width="640 " height="295 " src=
326
+ * <img width="470 " height="176 " src=
327
327
* "https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.toCompletable.png"
328
328
* alt="">
329
329
* <dl>
@@ -5390,6 +5390,8 @@ public final Observable<T> defaultIfEmpty(final T defaultValue) {
5390
5390
* Returns an Observable that emits the items emitted by the source Observable or the items of an alternate
5391
5391
* Observable if the source Observable is empty.
5392
5392
* <p/>
5393
+ * <p>
5394
+ * <img width="410" height="164" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchifempty.png" alt="">
5393
5395
* <dl>
5394
5396
* <dt><b>Backpressure:</b></dt>
5395
5397
* <dd>If the source {@code Observable} is empty, the alternate {@code Observable} is expected to honor backpressure.
0 commit comments