You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1801,8 +1856,6 @@ public static <T> Observable<T> switchOnNext(Observable<? extends Observable<? e
1801
1856
* its {@link Observer}s; it invokes {@code onCompleted} or {@code onError} only once; and it never invokes {@code onNext} after invoking either {@code onCompleted} or {@code onError}.
1802
1857
* {@code synchronize} enforces this, and the Observable it returns invokes {@code onNext} and {@code onCompleted} or {@code onError} synchronously.
1803
1858
*
1804
-
* @param <T>
1805
-
* the type of item emitted by the source Observable
1806
1859
* @return an Observable that is a chronologically well-behaved version of the source
1807
1860
* Observable, and that synchronously notifies its {@link Observer}s
1808
1861
*/
@@ -1822,8 +1875,6 @@ public Observable<T> synchronize() {
1822
1875
*
1823
1876
* @param lock
1824
1877
* The lock object to synchronize each observer call on
1825
-
* @param <T>
1826
-
* the type of item emitted by the source Observable
1827
1878
* @return an Observable that is a chronologically well-behaved version of the source
1828
1879
* Observable, and that synchronously notifies its {@link Observer}s
1829
1880
*/
@@ -3140,7 +3191,7 @@ public Observable<Boolean> exists(Func1<? super T, Boolean> predicate) {
3140
3191
/**
3141
3192
* Determines whether an observable sequence contains a specified element.
3142
3193
*
3143
-
* @param value
3194
+
* @param element
3144
3195
* The element to search in the sequence.
3145
3196
* @return an Observable that emits if the element is in the source sequence.
0 commit comments