@@ -5870,6 +5870,8 @@ public final ConnectableObservable<T> replay() {
5870
5870
* Returns an observable sequence that is the result of invoking the
5871
5871
* selector on a connectable observable sequence that shares a single
5872
5872
* subscription to the underlying sequence and starts with initial value.
5873
+ * <p>
5874
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/replay.f.png">
5873
5875
*
5874
5876
* @param <R>
5875
5877
* the return element type
@@ -5897,6 +5899,8 @@ public final Subject<T, T> call() {
5897
5899
* Returns an observable sequence that is the result of invoking the
5898
5900
* selector on a connectable observable sequence that shares a single
5899
5901
* subscription to the underlying sequence replaying {@code bufferSize} notifications.
5902
+ * <p>
5903
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/replay.fn.png">
5900
5904
*
5901
5905
* @param <R>
5902
5906
* the return element type
@@ -5924,7 +5928,10 @@ public final Subject<T, T> call() {
5924
5928
/**
5925
5929
* Returns an observable sequence that is the result of invoking the
5926
5930
* selector on a connectable observable sequence that shares a single
5927
- * subscription to the underlying sequence replaying {@code bufferSize} notifications within window.
5931
+ * subscription to the underlying sequence replaying {@code bufferSize}
5932
+ * notifications within window.
5933
+ * <p>
5934
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/replay.fnt.png">
5928
5935
*
5929
5936
* @param <R>
5930
5937
* the return element type
@@ -5951,7 +5958,10 @@ public final <R> Observable<R> replay(Func1<? super Observable<T>, ? extends Obs
5951
5958
/**
5952
5959
* Returns an observable sequence that is the result of invoking the
5953
5960
* selector on a connectable observable sequence that shares a single
5954
- * subscription to the underlying sequence replaying {@code bufferSize} notifications within window.
5961
+ * subscription to the underlying sequence replaying {@code bufferSize}
5962
+ * notifications within window.
5963
+ * <p>
5964
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/replay.fnts.png">
5955
5965
*
5956
5966
* @param <R>
5957
5967
* the return element type
@@ -5990,6 +6000,8 @@ public final Subject<T, T> call() {
5990
6000
* Returns an observable sequence that is the result of invoking the
5991
6001
* selector on a connectable observable sequence that shares a single
5992
6002
* subscription to the underlying sequence replaying {@code bufferSize} notifications.
6003
+ * <p>
6004
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/replay.fns.png">
5993
6005
*
5994
6006
* @param <R>
5995
6007
* the return element type
@@ -6021,6 +6033,8 @@ public final Subject<T, T> call() {
6021
6033
* selector on a connectable observable sequence that shares a single
6022
6034
* subscription to the underlying sequence replaying all notifications
6023
6035
* within window.
6036
+ * <p>
6037
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/replay.ft.png">
6024
6038
*
6025
6039
* @param <R>
6026
6040
* the return element type
@@ -6048,6 +6062,8 @@ public final <R> Observable<R> replay(Func1<? super Observable<T>, ? extends Obs
6048
6062
* selector on a connectable observable sequence that shares a single
6049
6063
* subscription to the underlying sequence replaying all notifications
6050
6064
* within window.
6065
+ * <p>
6066
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/replay.fts.png">
6051
6067
*
6052
6068
* @param <R>
6053
6069
* the return element type
@@ -6082,6 +6098,8 @@ public final Subject<T, T> call() {
6082
6098
* Returns an observable sequence that is the result of invoking the
6083
6099
* selector on a connectable observable sequence that shares a single
6084
6100
* subscription to the underlying sequence replaying all notifications.
6101
+ * <p>
6102
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/replay.fs.png">
6085
6103
*
6086
6104
* @param <R>
6087
6105
* the return element type
0 commit comments