Home | History | Annotate | Download | only in async

Lines Matching refs:inputs

45     private ObservableCombiner(List<? extends Observable<?>> inputs,
47 mInputs = ImmutableList.copyOf(inputs);
54 * @param inputs The input observables.
55 * @param function The function to apply to all of the inputs.
56 * @param <I> The type of all inputs values.
58 * @return An observable which will reflect the combination of all inputs
62 static <I, O> Observable<O> transform(final List<? extends Observable<I>> inputs,
64 return new ObservableCombiner<>(inputs, new Supplier<O>() {
68 for (Observable<? extends I> dependency : inputs) {
76 static <O> Observable<O> transform(final List<? extends Observable<?>> inputs,
78 return new ObservableCombiner<>(inputs, output);