Uses of Interface
ratpack.func.BiFunction
-
Packages that use BiFunction Package Description ratpack.exec The execution management.ratpack.func General functional (i.e. Single Abstract Method) types.ratpack.stream Support for reactive streams. -
-
Uses of BiFunction in ratpack.exec
Methods in ratpack.exec with parameters of type BiFunction Modifier and Type Method Description default <B,A>
Promise<A>Promise. around(Factory<? extends B> before, BiFunction<? super B,? super ExecResult<T>,? extends ExecResult<A>> after)
Facilitates capturing a value before the the promise is subscribed and using it to later augment the result.default Promise<T>
Promise. retry(int maxAttempts, BiFunction<? super java.lang.Integer,? super java.lang.Throwable,Promise<java.time.Duration>> onError)
Deprecated.since 1.7, usePromise.retry(RetryPolicy, BiAction)
-
Uses of BiFunction in ratpack.func
Methods in ratpack.func that return BiFunction Modifier and Type Method Description default <V> BiFunction<I1,I2,V>
BiFunction. andThen(Function<? super O,? extends V> transform)
-
Uses of BiFunction in ratpack.stream
Methods in ratpack.stream with parameters of type BiFunction Modifier and Type Method Description static <T,R>
Promise<R>Streams. reduce(Publisher<T> publisher, R seed, BiFunction<? super R,? super T,? extends R> reducer)
Reduces the stream to a single value, by applying the given function successively.default <R> Promise<R>
TransformablePublisher. reduce(R seed, BiFunction<? super R,? super T,? extends R> reducer)
Reduces the stream to a single value, by applying the given function successively.
-