R - the result type
public final class OperatorZip<R> extends Objectimplements Observable .Operator <R ,Observable <?>[]>
The zip operation applies this function in strict sequence, so the first item emitted by the new Observable will be the result of the function applied to the first item emitted by each zipped Observable; the second item emitted by the new Observable will be the result of the function applied to the second item emitted by each zipped Observable; and so forth.
The resulting Observable returned from zip will invoke onNext as many times as the number of onNext invocations of the source Observable that emits the fewest items.
| Constructor and Description |
|---|
OperatorZip(Func2
|
OperatorZip(Func3
|
OperatorZip(Func4
|
OperatorZip(Func5
|
OperatorZip(Func6
|
OperatorZip(Func7
|
OperatorZip(Func8
|
OperatorZip(Func9
|
OperatorZip(FuncN
|
public OperatorZip(Func2f)
public OperatorZip(Func3f)
public OperatorZip(Func4f)
public OperatorZip(Func5f)
public OperatorZip(Func6f)
public OperatorZip(Func7f)
public OperatorZip(Func8f)
public OperatorZip(Func9f)
public Subscriber<? super Observable []> call(Subscriber <? super R> child)