Interface ThrowingBiConsumer<A,​B>

All Superinterfaces:
BiConsumer<A,​B>
All Known Implementing Classes:
Control.Async
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface
public interface ThrowingBiConsumer<A,​B>
extends BiConsumer<A,​B>
  • Method Summary

    Modifier and Type Method Description
    default void accept​(A arg1, B arg2)  
    void consume​(A arg1, B arg2)  
    default BiConsumer<A,​B> safe​(Consumer<? super Exception> errorHandler)  

    Methods inherited from interface java.util.function.BiConsumer

    andThen