Skip to content

Commit e29b57b

Browse files
UMFsimkeakarnokd
authored andcommitted
Add marble diagram to the Single.never method (#6074)
* Add marble diagram to the Single.never method * Use correct marble diagram URL for Single.never method
1 parent 909920a commit e29b57b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/io/reactivex/Single.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1162,6 +1162,8 @@ public static <T> Flowable<T> mergeDelayError(
11621162

11631163
/**
11641164
* Returns a singleton instance of a never-signalling Single (only calls onSubscribe).
1165+
* <p>
1166+
* <img width="640" height="244" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.never.png" alt="">
11651167
* <dl>
11661168
* <dt><b>Scheduler:</b></dt>
11671169
* <dd>{@code never} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -2603,7 +2605,7 @@ public final T blockingGet() {
26032605
* Example:
26042606
* <pre><code>
26052607
* // Step 1: Create the consumer type that will be returned by the SingleOperator.apply():
2606-
*
2608+
*
26072609
* public final class CustomSingleObserver&lt;T&gt; implements SingleObserver&lt;T&gt;, Disposable {
26082610
*
26092611
* // The downstream's SingleObserver that will receive the onXXX events

0 commit comments

Comments
 (0)