Uses of Interface
io.smallrye.mutiny.groups.Gatherer
Packages that use Gatherer
-
Uses of Gatherer in io.smallrye.mutiny.groups
Classes in io.smallrye.mutiny.groups that implement GathererModifier and TypeClassDescriptionstatic classGatherers.DefaultGatherer<I,ACC, O> Default implementation of theGathererinterface.Methods in io.smallrye.mutiny.groups that return GathererModifier and TypeMethodDescriptionSpecifies the finalizer function.static <I> Gatherer<I, I, I> Gatherers.fold(Supplier<I> initialAccumulatorSupplier, BiFunction<I, I, I> accumulatorFunction) Creates a newGathererthat performs a fold operation.static <I,ACC, O>
Gatherer<I, ACC, O> Gatherers.of(Supplier<ACC> initialAccumulatorSupplier, BiFunction<ACC, I, ACC> accumulatorFunction, BiFunction<ACC, Boolean, Optional<Gatherer.Extraction<ACC, O>>> extractor, Function<ACC, Optional<O>> finalizer) Creates a newGathererwith the specified components.static <I> Gatherer<I, I, I> Gatherers.scan(Supplier<I> initialAccumulatorSupplier, BiFunction<I, I, I> accumulatorFunction) Creates a newGathererthat performs a scan operation.Gatherers.slidingWindow(int size) Creates a newGathererthat performs a sliding window operation.Gatherers.window(int size) Creates a newGathererthat performs a windowing operation.Methods in io.smallrye.mutiny.groups with parameters of type Gatherer