Package org.apache.logging.log4j.util
Interface TriConsumer<K,V,S>
- Type Parameters:
K
- type of the first argumentV
- type of the second argumentS
- type of the third argument
public interface TriConsumer<K,V,S>
An operation that accepts three 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 arguments
- the third input argument
-