Uses of Interface
io.fluxzero.common.ThrowingBiConsumer
Packages that use ThrowingBiConsumer
-
Uses of ThrowingBiConsumer in io.fluxzero.common
Methods in io.fluxzero.common that return ThrowingBiConsumerModifier and TypeMethodDescriptiondefault ThrowingBiConsumer<T, U> ThrowingBiConsumer.andThen(@NonNull ThrowingBiConsumer<? super T, ? super U> after) Returns a composedThrowingBiConsumerthat performs, in sequence, this operation followed by theafteroperation.Methods in io.fluxzero.common with parameters of type ThrowingBiConsumerModifier and TypeMethodDescriptiondefault ThrowingBiConsumer<T, U> ThrowingBiConsumer.andThen(@NonNull ThrowingBiConsumer<? super T, ? super U> after) Returns a composedThrowingBiConsumerthat performs, in sequence, this operation followed by theafteroperation.Constructors in io.fluxzero.common with parameters of type ThrowingBiConsumerModifierConstructorDescriptionStreamInputStream(@NonNull Stream<? extends T> stream, @NonNull ThrowingBiConsumer<? super T, ? super OutputStream> writer) Constructs aStreamInputStreaminstance that maps the elements of the givenStreamto anInputStreamrepresentation using a provided writer function. -
Uses of ThrowingBiConsumer in io.fluxzero.sdk.persisting.search
Methods in io.fluxzero.sdk.persisting.search with parameters of type ThrowingBiConsumerModifier and TypeMethodDescriptiondefault <T> InputStreamSearch.toInputStream(Class<T> type, ThrowingBiConsumer<T, OutputStream> writer) Streams matching values of the specified type as a lazily populatedInputStream.default <T> InputStreamSearch.toInputStream(Class<T> type, ThrowingBiConsumer<T, OutputStream> writer, int fetchSize) Streams matching values of the specified type as a lazily populatedInputStream, fetching documents in batches offetchSize.