Skip to content

Commit b3516b2

Browse files
authored
3.x: Fix marble dimensions, add program that checks them (#6890)
* 3.x: Fix marble dimensions, add program that checks them * Remove an empty line.
1 parent 1ede607 commit b3516b2

File tree

7 files changed

+242
-136
lines changed

7 files changed

+242
-136
lines changed

src/main/java/io/reactivex/rxjava3/core/Completable.java

+13-13
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public static Completable complete() {
178178
/**
179179
* Returns a {@code Completable} which completes only when all sources complete, one after another.
180180
* <p>
181-
* <img width="640" height="283" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.concatArray.png" alt="">
181+
* <img width="640" height="284" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.concatArray.png" alt="">
182182
* <dl>
183183
* <dt><b>Scheduler:</b></dt>
184184
* <dd>{@code concatArray} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -205,7 +205,7 @@ public static Completable concatArray(@NonNull CompletableSource... sources) {
205205
/**
206206
* Returns a {@code Completable} which completes only when all sources complete, one after another.
207207
* <p>
208-
* <img width="640" height="322" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.concatArrayDelayError.png" alt="">
208+
* <img width="640" height="324" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.concatArrayDelayError.png" alt="">
209209
* <dl>
210210
* <dt><b>Scheduler:</b></dt>
211211
* <dd>{@code concatArrayDelayError} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -247,7 +247,7 @@ public static Completable concat(@NonNull Iterable<@NonNull ? extends Completabl
247247
/**
248248
* Returns a {@code Completable} which completes only when all sources complete, one after another.
249249
* <p>
250-
* <img width="640" height="237" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.concat.p.png" alt="">
250+
* <img width="640" height="238" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.concat.p.png" alt="">
251251
* <dl>
252252
* <dt><b>Backpressure:</b></dt>
253253
* <dd>The returned {@code Completable} honors the backpressure of the downstream consumer
@@ -270,7 +270,7 @@ public static Completable concat(@NonNull Publisher<@NonNull ? extends Completab
270270
/**
271271
* Returns a {@code Completable} which completes only when all sources complete, one after another.
272272
* <p>
273-
* <img width="640" height="237" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.concat.pn.png" alt="">
273+
* <img width="640" height="238" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.concat.pn.png" alt="">
274274
* <dl>
275275
* <dt><b>Backpressure:</b></dt>
276276
* <dd>The returned {@code Completable} honors the backpressure of the downstream consumer
@@ -297,7 +297,7 @@ public static Completable concat(@NonNull Publisher<@NonNull ? extends Completab
297297
/**
298298
* Returns a {@code Completable} which completes only when all sources complete, one after another.
299299
* <p>
300-
* <img width="640" height="361" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.concatDelayError.png" alt="">
300+
* <img width="640" height="361" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.concatDelayError.i.png" alt="">
301301
* <dl>
302302
* <dt><b>Scheduler:</b></dt>
303303
* <dd>{@code concatDelayError} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -989,7 +989,7 @@ public static Completable mergeArrayDelayError(@NonNull CompletableSource... sou
989989
* any error emitted by any of the inner {@code CompletableSource}s until all of
990990
* them terminate in a way or another.
991991
* <p>
992-
* <img width="640" height="475" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.mergeDelayError.png" alt="">
992+
* <img width="640" height="476" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.mergeDelayError.png" alt="">
993993
* <dl>
994994
* <dt><b>Scheduler:</b></dt>
995995
* <dd>{@code mergeDelayError} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -1200,7 +1200,7 @@ public static Completable switchOnNextDelayError(@NonNull Publisher<@NonNull ? e
12001200
* Returns a {@code Completable} instance which manages a resource along
12011201
* with a custom {@link CompletableSource} instance while the subscription is active.
12021202
* <p>
1203-
* <img width="640" height="388" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.using.png" alt="">
1203+
* <img width="640" height="389" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.using.png" alt="">
12041204
* <p>
12051205
* This overload disposes eagerly before the terminal event is emitted.
12061206
* <dl>
@@ -1294,7 +1294,7 @@ public static Completable wrap(@NonNull CompletableSource source) {
12941294
* Returns a {@code Completable} that emits the a terminated event of either this {@code Completable}
12951295
* or the other {@link CompletableSource}, whichever fires first.
12961296
* <p>
1297-
* <img width="640" height="484" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.ambWith.png" alt="">
1297+
* <img width="640" height="485" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.ambWith.png" alt="">
12981298
* <dl>
12991299
* <dt><b>Scheduler:</b></dt>
13001300
* <dd>{@code ambWith} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -1395,7 +1395,7 @@ public final Completable ambWith(@NonNull CompletableSource other) {
13951395
* propagated to the downstream observer and will result in skipping the subscription to the next
13961396
* {@code MaybeSource}.
13971397
* <p>
1398-
* <img width="640" height="280" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.andThen.m.png" alt="">
1398+
* <img width="640" height="281" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.andThen.m.png" alt="">
13991399
* <dl>
14001400
* <dt><b>Scheduler:</b></dt>
14011401
* <dd>{@code andThen} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -1443,7 +1443,7 @@ public final Completable andThen(@NonNull CompletableSource next) {
14431443
* Subscribes to and awaits the termination of this {@code Completable} instance in a blocking manner and
14441444
* rethrows any exception emitted.
14451445
* <p>
1446-
* <img width="640" height="432" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.blockingAwait.png" alt="">
1446+
* <img width="640" height="433" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.blockingAwait.png" alt="">
14471447
* <dl>
14481448
* <dt><b>Scheduler:</b></dt>
14491449
* <dd>{@code blockingAwait} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -1665,7 +1665,7 @@ public final Completable concatWith(@NonNull CompletableSource other) {
16651665
/**
16661666
* Returns a {@code Completable} which delays the emission of the completion event by the given time.
16671667
* <p>
1668-
* <img width="640" height="343" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.delay.png" alt="">
1668+
* <img width="640" height="344" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.delay.png" alt="">
16691669
* <dl>
16701670
* <dt><b>Scheduler:</b></dt>
16711671
* <dd>{@code delay} does operate by default on the {@code computation} {@link Scheduler}.</dd>
@@ -1955,7 +1955,7 @@ public final Completable doOnSubscribe(@NonNull Consumer<? super Disposable> onS
19551955
* Returns a {@code Completable} instance that calls the given {@code onTerminate} {@link Action} just before this {@code Completable}
19561956
* completes normally or with an exception.
19571957
* <p>
1958-
* <img width="640" height="304" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.doOnTerminate.png" alt="">
1958+
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.doOnTerminate.png" alt="">
19591959
* <dl>
19601960
* <dt><b>Scheduler:</b></dt>
19611961
* <dd>{@code doOnTerminate} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -1978,7 +1978,7 @@ public final Completable doOnTerminate(@NonNull Action onTerminate) {
19781978
* Returns a {@code Completable} instance that calls the given {@code onAfterTerminate} {@link Action} after this {@code Completable}
19791979
* completes normally or with an exception.
19801980
* <p>
1981-
* <img width="640" height="304" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.doAfterTerminate.png" alt="">
1981+
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.doAfterTerminate.png" alt="">
19821982
* <dl>
19831983
* <dt><b>Scheduler:</b></dt>
19841984
* <dd>{@code doAfterTerminate} does not operate by default on a particular {@link Scheduler}.</dd>

0 commit comments

Comments
 (0)