Package org.apache.logging.log4j.util
Interface BiConsumer<K,V>
- Type Parameters:
K
- type of the first argumentV
- type of the second argument
- All Superinterfaces:
BiConsumer<K,
V>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
An operation that accepts two input arguments and returns no result.
- Since:
- 2.7
- See Also:
-
Method Summary
Methods inherited from interface java.util.function.BiConsumer
andThen
-
Method Details
-
accept
Performs the operation given the specified arguments.- Specified by:
accept
in interfaceBiConsumer<K,
V> - Parameters:
k
- the first input argumentv
- the second input argument
-