File tree 1 file changed +6
-0
lines changed
src/main/java/io/reactivex 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -3051,6 +3051,8 @@ public final Single<T> onTerminateDetach() {
3051
3051
3052
3052
/**
3053
3053
* Repeatedly re-subscribes to the current Single and emits each success value.
3054
+ * <p>
3055
+ * <img width="640" height="457" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.repeat.png" alt="">
3054
3056
* <dl>
3055
3057
* <dt><b>Backpressure:</b></dt>
3056
3058
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer.</dd>
@@ -3069,6 +3071,8 @@ public final Flowable<T> repeat() {
3069
3071
3070
3072
/**
3071
3073
* Re-subscribes to the current Single at most the given number of times and emits each success value.
3074
+ * <p>
3075
+ * <img width="640" height="457" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.repeat.n.png" alt="">
3072
3076
* <dl>
3073
3077
* <dt><b>Backpressure:</b></dt>
3074
3078
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer.</dd>
@@ -3090,6 +3094,8 @@ public final Flowable<T> repeat(long times) {
3090
3094
* Re-subscribes to the current Single if
3091
3095
* the Publisher returned by the handler function signals a value in response to a
3092
3096
* value signalled through the Flowable the handle receives.
3097
+ * <p>
3098
+ * <img width="640" height="1478" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.repeatWhen.png" alt="">
3093
3099
* <dl>
3094
3100
* <dt><b>Backpressure:</b></dt>
3095
3101
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer.
You can’t perform that action at this time.
0 commit comments