Package org.apache.logging.log4j.util
Interface BiConsumer<K,V>
- Type Parameters:
K- type of the first argumentV- type of the second argument
public interface BiConsumer<K,V>
An operation that accepts two input arguments and returns no result.
- Since:
- 2.7
- See Also:
-
Method Summary
-
Method Details
-
accept
Performs the operation given the specified arguments.- Parameters:
k- the first input argumentv- the second input argument
-