Uses of Class
uk.ac.ebi.utils.opt.runcontrol.ReactorUtils.ParallelBatchFluxBuilder
Packages that use ReactorUtils.ParallelBatchFluxBuilder
-
Uses of ReactorUtils.ParallelBatchFluxBuilder in uk.ac.ebi.utils.opt.runcontrol
Methods in uk.ac.ebi.utils.opt.runcontrol that return ReactorUtils.ParallelBatchFluxBuilderModifier and TypeMethodDescriptionReactorUtils.ParallelBatchFluxBuilder.withBatchSize
(int batchSize) The parallel flux scheduler to use.ReactorUtils.ParallelBatchFluxBuilder.withBatchSupplier
(Supplier<? extends Collection<? super T>> batchSupplier) Default is null, which falls back toFlux.buffer(int)
, usually aList
supplier.ReactorUtils.ParallelBatchFluxBuilder.withParallelism
(int parallelism) The degree of parallelism of the resulting flux.ReactorUtils.ParallelBatchFluxBuilder.withParallelismPreFetch
(int parallelismPreFetch) The prefetch parameter passed toFlux.parallel(int, int)
.ReactorUtils.ParallelBatchFluxBuilder.withScheduler
(reactor.core.scheduler.Scheduler scheduler) The scheduler used to run the resulting flux.Method parameters in uk.ac.ebi.utils.opt.runcontrol with type arguments of type ReactorUtils.ParallelBatchFluxBuilderModifier and TypeMethodDescriptionreactor.core.publisher.ParallelFlux
<B> ReactorUtils.ParallelBatchFluxBuilder.build
(Consumer<ReactorUtils.ParallelBatchFluxBuilder<? super T, ? super B>> visitor) static <T> reactor.core.publisher.ParallelFlux
<List<T>> ReactorUtils.parallelBatchFlux
(Collection<? extends T> collection, Consumer<ReactorUtils.ParallelBatchFluxBuilder<? super T, ? super List<T>>> visitor) Just usesReactorUtils.ParallelBatchFluxBuilder
with its defaults.static <T> reactor.core.publisher.ParallelFlux
<List<T>> ReactorUtils.parallelBatchFlux
(Stream<? extends T> stream, Consumer<ReactorUtils.ParallelBatchFluxBuilder<? super T, ? super List<T>>> visitor) Just usesReactorUtils.ParallelBatchFluxBuilder
with its defaults.static <T> reactor.core.publisher.ParallelFlux
<List<T>> ReactorUtils.parallelBatchFlux
(reactor.core.publisher.Flux<? extends T> flux, Consumer<ReactorUtils.ParallelBatchFluxBuilder<? super T, ? super List<T>>> visitor) Just usesReactorUtils.ParallelBatchFluxBuilder
with its defaults.