Interface TriConsumer<T1,T2,T3>

Type Parameters:
T1 - Type of value 1.
T2 - Type of value 2.
T3 - Type of value 3.
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface TriConsumer<T1,T2,T3>
A functional interface that accepts 3 arguments of type T1, T2, T3 for performing an operation with no return value.
Author:
Syam