@FunctionalInterface
public interface ThrowingBiConsumer<T1,T2>
BiConsumer
which can throw Exception
s.
Used to expand the allowed set of method references to be used by Java 8 functional interfaces.
Modifier and Type | Method and Description |
---|---|
void |
accept(T1 t1,
T2 t2) |