Uses of Interface
io.fluxzero.common.ThrowingConsumer
Packages that use ThrowingConsumer
-
Uses of ThrowingConsumer in io.fluxzero.common
Methods in io.fluxzero.common that return ThrowingConsumerModifier and TypeMethodDescriptiondefault ThrowingConsumer<T> ThrowingConsumer.andThen(@NonNull ThrowingConsumer<? super T> after) Returns a composed consumer that performs, in sequence, this operation followed by theafteroperation.Methods in io.fluxzero.common with parameters of type ThrowingConsumerModifier and TypeMethodDescriptiondefault ThrowingConsumer<T> ThrowingConsumer.andThen(@NonNull ThrowingConsumer<? super T> after) Returns a composed consumer that performs, in sequence, this operation followed by theafteroperation.static <T> Consumer<T> ObjectUtils.asConsumer(ThrowingConsumer<T> consumer) static <T> Backlog<T> Backlog.forConsumer(ThrowingConsumer<List<T>> consumer) Creates a new backlog for a synchronous consumer and default batch size and default logging error handler.static <T> Backlog<T> Backlog.forConsumer(ThrowingConsumer<List<T>> consumer, int maxBatchSize) Creates a backlog with custom max batch size and default logging error handler.static <T> Backlog<T> Backlog.forConsumer(ThrowingConsumer<List<T>> consumer, int maxBatchSize, ErrorHandler<List<T>> errorHandler) Creates a backlog with custom max batch size and error handler.