Uses of Interface
ratpack.func.BiFunction
-
Packages that use BiFunction Package Description ratpack.exec The execution management.ratpack.exec.stream Support for reactive streams.ratpack.func -
-
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.ExecControllerSpec.ComputeSpec
ExecControllerSpec.ComputeSpec. eventLoopGroup(BiFunction<Integer,ThreadFactory,io.netty.channel.EventLoopGroup> eventLoopGroupFactory)
Specify a factory that generates NettyEventLoopGroup
instances with the arguments.ExecControllerSpec.EventLoopSpec
ExecControllerSpec.EventLoopSpec. eventLoopGroup(BiFunction<Integer,ThreadFactory,io.netty.channel.EventLoopGroup> eventLoopGroupFactory)
Specify a factory that generates NettyEventLoopGroup
instances with the arguments. -
Uses of BiFunction in ratpack.exec.stream
Methods in ratpack.exec.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. -
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)
-