T - the type of the first argument to the operation.U - the type of the second argument to the operation.E - the type of checked exception the operation might throw.@FunctionalInterface public interface CheckedBiConsumer<T,U,E extends Exception>
CheckedConsumer.
Unlike most other functional interfaces, BiConsumer is expected
to operate via side-effects.
This is a functional interface
whose functional method is accept(Object, Object).
CheckedConsumer,
Consumer,
BiConsumer| Modifier and Type | Method and Description |
|---|---|
void |
accept(T input1,
U input2)
Performs this operation on the given arguments.
|
Copyright © 2019 OpenDaylight. All rights reserved.