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
* <p> {@code zip} applies this function in strict sequence, so the first item emitted by the
1898
-
* new Observable will be the result of the function applied to the first item emitted by {@code w0} and the first item emitted by {@code w1}; the second item emitted by
1899
-
* the new Observable will be the result of the function applied to the second item emitted by {@code w0} and the second item emitted by {@code w1}; and so forth.
1900
-
* <p>
1901
-
* The resulting {@code Observable<R>} returned from {@code zip} will invoke {@link Observer#onNext onNext} as many times as the number of {@code onNext} invocations
1902
-
* of the source Observable that emits the fewest items.
1903
-
*
1904
-
* @param o1
1905
-
* one source Observable
1906
-
* @param o2
1907
-
* another source Observable
1908
-
* @param zipFunction
1909
-
* a function that, when applied to an item emitted by each of the source
1910
-
* Observables, results in an item that will be emitted by the resulting Observable
1911
-
* @return an Observable that emits the zipped results
* <p> {@code zip} applies this function in strict sequence, so the first item emitted by the
1946
+
* new Observable will be the result of the function applied to the first item emitted by {@code w0} and the first item emitted by {@code w1}; the second item emitted by
1947
+
* the new Observable will be the result of the function applied to the second item emitted by {@code w0} and the second item emitted by {@code w1}; and so forth.
1948
+
* <p>
1949
+
* The resulting {@code Observable<R>} returned from {@code zip} will invoke {@link Observer#onNext onNext} as many times as the number of {@code onNext} invocations
1950
+
* of the source Observable that emits the fewest items.
1951
+
*
1952
+
* @param o1
1953
+
* one source Observable
1954
+
* @param o2
1955
+
* another source Observable
1956
+
* @param zipFunction
1957
+
* a function that, when applied to an item emitted by each of the source
1958
+
* Observables, results in an item that will be emitted by the resulting Observable
1959
+
* @return an Observable that emits the zipped results
0 commit comments