Uses of Interface
io.activej.async.function.AsyncConsumer
-
Packages that use AsyncConsumer Package Description io.activej.async.function -
-
Uses of AsyncConsumer in io.activej.async.function
Methods in io.activej.async.function that return AsyncConsumer Modifier and Type Method Description default @NotNull AsyncConsumer<T>AsyncConsumer. async()static <T> @NotNull AsyncConsumer<T>AsyncConsumers. buffer(int maxParallelCalls, int maxBufferedCalls, @NotNull AsyncConsumer<T> asyncConsumer)static <T> @NotNull AsyncConsumer<T>AsyncConsumers. buffer(@NotNull AsyncConsumer<T> actual)default <V> @NotNull AsyncConsumer<V>AsyncConsumer. map(@NotNull Function<? super V,? extends T> fn)default <V> @NotNull AsyncConsumer<V>AsyncConsumer. mapAsync(@NotNull Function<? super V,? extends Promise<T>> fn)static <T> @NotNull AsyncConsumer<T>AsyncConsumer. of(@NotNull Consumer<? super T> consumer)Wraps standard Java'sConsumerinterface.default @NotNull AsyncConsumer<T>AsyncConsumer. peek(@NotNull Consumer<T> action)default @NotNull AsyncConsumer<T>AsyncConsumer. withExecutor(@NotNull AsyncExecutor asyncExecutor)Methods in io.activej.async.function with parameters of type AsyncConsumer Modifier and Type Method Description static <T> @NotNull AsyncConsumer<T>AsyncConsumers. buffer(int maxParallelCalls, int maxBufferedCalls, @NotNull AsyncConsumer<T> asyncConsumer)static <T> @NotNull AsyncConsumer<T>AsyncConsumers. buffer(@NotNull AsyncConsumer<T> actual)Method parameters in io.activej.async.function with type arguments of type AsyncConsumer Modifier and Type Method Description default <R> RAsyncConsumer. transformWith(@NotNull Function<AsyncConsumer<T>,R> fn)
-