Uses of Interface
org.aksw.commons.rx.function.RxFunction
Packages that use RxFunction
-
Uses of RxFunction in org.aksw.commons.rx.function
Methods in org.aksw.commons.rx.function that return RxFunctionModifier and TypeMethodDescriptiondefault <X> RxFunction<I,X> RxFunction.andThen(RxFunction<? super O, X> next) Generic chaining: RxFunction<I, O> fn = RxFunction.identity() .andThen(a -> fn(a))...andThen(o -> fn(o));...default <X> RxFunction<I,X> RxFunction.andThenFlatMapIterable(SerializableFunction<? super O, ? extends Iterable<X>> mapper) default <X> RxFunction<I,X> RxFunction.andThenMap(SerializableFunction<? super O, X> mapper) {@code andThenMap(x -> y) is a short hand for {@code andThen(flowable -> flowable.map(x -> y))} @param <X> @param mapper @returnstatic <I,O> RxFunction<I, O> RxFunction.from(RxFunction<I, O> rxfn) static <X> RxFunction<X,X> RxFunction.identity()Methods in org.aksw.commons.rx.function with parameters of type RxFunctionModifier and TypeMethodDescriptiondefault <X> RxFunction<I,X> RxFunction.andThen(RxFunction<? super O, X> next) Generic chaining: RxFunction<I, O> fn = RxFunction.identity() .andThen(a -> fn(a))...andThen(o -> fn(o));...static <I,O> RxFunction<I, O> RxFunction.from(RxFunction<I, O> rxfn)