@@ -1110,7 +1110,7 @@ public final static <T> Observable<T> empty() {
1110
1110
* {@code scheduler}
1111
1111
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#empty-error-and-never">RxJava wiki: empty</a>
1112
1112
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229066.aspx">MSDN: Observable.Empty(IScheduler)</a>
1113
- * @deprecated Use subscribeOn to Schedule
1113
+ * @deprecated use {@link # subscribeOn} to schedule
1114
1114
*/
1115
1115
@Deprecated
1116
1116
public final static <T> Observable<T> empty(Scheduler scheduler) {
@@ -1160,7 +1160,7 @@ public final static <T> Observable<T> error(Throwable exception) {
1160
1160
* the specified Scheduler
1161
1161
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#empty-error-and-never">RxJava wiki: error</a>
1162
1162
* @see <a href="http://msdn.microsoft.com/en-us/library/hh211711.aspx">MSDN: Observable.Throw</a>
1163
- * @deprecated Use subscribeOn to Schedule
1163
+ * @deprecated use {@link # subscribeOn} to schedule
1164
1164
*/
1165
1165
@Deprecated
1166
1166
public final static <T> Observable<T> error(Throwable exception, Scheduler scheduler) {
@@ -1297,7 +1297,7 @@ public final static <T> Observable<T> from(Iterable<? extends T> iterable) {
1297
1297
* Scheduler
1298
1298
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1299
1299
* @see <a href="http://msdn.microsoft.com/en-us/library/hh212140.aspx">MSDN: Observable.ToObservable</a>
1300
- * @deprecated Use subscribeOn to Schedule the work
1300
+ * @deprecated use {@link # subscribeOn} to schedule the work
1301
1301
*/
1302
1302
@Deprecated
1303
1303
public final static <T> Observable<T> from(Iterable<? extends T> iterable, Scheduler scheduler) {
@@ -1319,7 +1319,7 @@ public final static <T> Observable<T> from(Iterable<? extends T> iterable, Sched
1319
1319
* the type of the item
1320
1320
* @return an Observable that emits the item
1321
1321
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1322
- * @deprecated Use just or item instead
1322
+ * @deprecated use {@link #just} instead
1323
1323
*/
1324
1324
@Deprecated
1325
1325
public final static <T> Observable<T> from(T t1) {
@@ -1671,7 +1671,7 @@ public final static <T> Observable<T> from(T[] array) {
1671
1671
* @return an Observable that emits each item in the source Array
1672
1672
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava wiki: from</a>
1673
1673
* @see <a href="http://msdn.microsoft.com/en-us/library/hh212140.aspx">MSDN: Observable.ToObservable</a>
1674
- * @deprecated Use subscribeOn to Schedule the work
1674
+ * @deprecated use {@link # subscribeOn} to schedule the work
1675
1675
*/
1676
1676
@Deprecated
1677
1677
public final static <T> Observable<T> from(T[] items, Scheduler scheduler) {
@@ -2116,7 +2116,7 @@ public final static <T> Observable<T> merge(Iterable<? extends Observable<? exte
2116
2116
* if {@code maxConcurrent} is less than or equal to 0
2117
2117
* @see <a href="https://github.com/Netflix/RxJava/wiki/Combining-Observables#merge">RxJava wiki: merge</a>
2118
2118
* @see <a href="http://msdn.microsoft.com/en-us/library/hh244329.aspx">MSDN: Observable.Merge</a>
2119
- * @deprecated Use subscribeOn to Schedule
2119
+ * @deprecated use {@link # subscribeOn} to schedule
2120
2120
*/
2121
2121
@Deprecated
2122
2122
public final static <T> Observable<T> merge(Iterable<? extends Observable<? extends T>> sequences, int maxConcurrent, Scheduler scheduler) {
@@ -2144,7 +2144,7 @@ public final static <T> Observable<T> merge(Iterable<? extends Observable<? exte
2144
2144
* Observables in the Iterable
2145
2145
* @see <a href="https://github.com/Netflix/RxJava/wiki/Combining-Observables#merge">RxJava wiki: merge</a>
2146
2146
* @see <a href="http://msdn.microsoft.com/en-us/library/hh244336.aspx">MSDN: Observable.Merge</a>
2147
- * @deprecated Use subscribeOn to Schedule
2147
+ * @deprecated use {@link # subscribeOn} to schedule
2148
2148
*/
2149
2149
@Deprecated
2150
2150
public final static <T> Observable<T> merge(Iterable<? extends Observable<? extends T>> sequences, Scheduler scheduler) {
@@ -2502,7 +2502,7 @@ public final static <T> Observable<T> merge(Observable<? extends T>[] sequences)
2502
2502
* @return an Observable that emits all of the items emitted by the Observables in the Array
2503
2503
* @see <a href="https://github.com/Netflix/RxJava/wiki/Combining-Observables#merge">RxJava wiki: merge</a>
2504
2504
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229061.aspx">MSDN: Observable.Merge</a>
2505
- * @deprecated Use subscribeOn to Schedule
2505
+ * @deprecated use {@link # subscribeOn} to schedule
2506
2506
*/
2507
2507
@Deprecated
2508
2508
public final static <T> Observable<T> merge(Observable<? extends T>[] sequences, Scheduler scheduler) {
@@ -3235,7 +3235,7 @@ public final static <T, Resource> Observable<T> using(
3235
3235
* @return the Observable whose lifetime controls the lifetime of the dependent resource object
3236
3236
* @see <a href="https://github.com/Netflix/RxJava/wiki/Observable-Utility-Operators#using">RxJava wiki: using</a>
3237
3237
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229585.aspx">MSDN: Observable.Using</a>
3238
- * @deprecated Use replacement ` using` method with different overloads.
3238
+ * @deprecated use the other {@code using} method with different overloads
3239
3239
*/
3240
3240
@Deprecated
3241
3241
public final static <T, Resource extends Subscription> Observable<T> using(Func0<Resource> resourceFactory, Func1<? super Resource, ? extends Observable<? extends T>> observableFactory) {
@@ -6002,7 +6002,7 @@ public final <TIntermediate, TResult> Observable<TResult> multicast(
6002
6002
* into the specified {@link Subject}
6003
6003
* @see <a href="https://github.com/Netflix/RxJava/wiki/Connectable-Observable-Operators#observablepublish-and-observablemulticast">RxJava wiki: Observable.publish and Observable.multicast</a>
6004
6004
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229708.aspx">MSDN: Observable.Multicast</a>
6005
- * @deprecated Use multicast(Func0<Subject>) instead. This one caused nuanced bugs as it retains state.
6005
+ * @deprecated use {@link # multicast(Func0)} instead. This one caused nuanced bugs as it retains state.
6006
6006
*/
6007
6007
@Deprecated
6008
6008
public final <R> ConnectableObservable<R> multicast(final Subject<? super T, ? extends R> subject) {
@@ -6246,7 +6246,7 @@ public final Observable<T> onErrorReturn(Func1<Throwable, ? extends T> resumeFun
6246
6246
* @return the original Observable, with appropriately modified behavior
6247
6247
* @see <a href="https://github.com/Netflix/RxJava/wiki/Phantom-Operators#onerrorflatmap">RxJava wiki: onErrorFlatMap</a>
6248
6248
* @since 0.17
6249
- * @deprecated See https://github.com/Netflix/RxJava/issues/1465
6249
+ * @deprecated see https://github.com/Netflix/RxJava/issues/1465
6250
6250
*/
6251
6251
@Deprecated
6252
6252
public final Observable<T> onErrorFlatMap(final Func1<OnErrorThrowable, ? extends Observable<? extends T>> resumeFunction) {
@@ -8052,7 +8052,7 @@ public final Observable<T> startWith(Iterable<T> values) {
8052
8052
* emitted by the source Observable
8053
8053
* @see <a href="https://github.com/Netflix/RxJava/wiki/Combining-Observables#startwith">RxJava wiki: startWith</a>
8054
8054
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229372.aspx">MSDN: Observable.StartWith</a>
8055
- * @deprecated Use subscribeOn to Schedule
8055
+ * @deprecated use {@link # subscribeOn} to schedule
8056
8056
*/
8057
8057
@Deprecated
8058
8058
public final Observable<T> startWith(Iterable<T> values, Scheduler scheduler) {
@@ -8338,7 +8338,7 @@ public final Observable<T> startWith(T t1, T t2, T t3, T t4, T t5, T t6, T t7, T
8338
8338
* emit items emitted by the source Observable.
8339
8339
* @see <a href="https://github.com/Netflix/RxJava/wiki/Combining-Observables#startwith">RxJava wiki: startWith</a>
8340
8340
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229372.aspx">MSDN: Observable.StartWith</a>
8341
- * @deprecated Use subscribeOn to Schedule
8341
+ * @deprecated use {@link # subscribeOn} to schedule
8342
8342
*/
8343
8343
@Deprecated
8344
8344
public final Observable<T> startWith(T[] values, Scheduler scheduler) {
@@ -10132,6 +10132,7 @@ public final Observable<Observable<T>> window(long timespan, long timeshift, Tim
10132
10132
* @return an Observable that emits new windows periodically as a fixed timespan elapses
10133
10133
* @see <a href="https://github.com/Netflix/RxJava/wiki/Transforming-Observables#window">RxJava wiki: window</a>
10134
10134
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.window.aspx">MSDN: Observable.Window</a>
10135
+ * @since 0.20
10135
10136
*/
10136
10137
public final Observable<Observable<T>> window(long timespan, long timeshift, TimeUnit unit, int count, Scheduler scheduler) {
10137
10138
return lift(new OperatorWindowWithTime<T>(timespan, timeshift, unit, count, scheduler));
@@ -10405,7 +10406,8 @@ public final <T2, R> Observable<R> zipWith(Iterable<? extends T2> other, Func2<?
10405
10406
* and emits the results of {@code zipFunction} applied to these pairs
10406
10407
* @see <a href="https://github.com/Netflix/RxJava/wiki/Combining-Observables#zip">RxJava wiki: zip</a>
10407
10408
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.zip.aspx">MSDN: Observable.Zip</a>
10408
- * @deprecated use {@code zipWith} instead. Changed to match naming convention of {@code mergeWith}, {@code concatWith}, etc.
10409
+ * @deprecated use {@link #zipWith} instead. Changed to match naming convention of {@link #mergeWith},
10410
+ * {@link #concatWith}, etc.
10409
10411
*/
10410
10412
@Deprecated
10411
10413
public final <T2, R> Observable<R> zip(Observable<? extends T2> other, Func2<? super T, ? super T2, ? extends R> zipFunction) {
0 commit comments