-
- Type Parameters:
A
- first argument typeB
- second argument typeC
- third argument type
- All Superinterfaces:
Functions.BiConsumer<A,B>
,Functions.Consumer<A>
- All Known Subinterfaces:
Functions.QuadriConsumer<A,B,C,D>
- Enclosing class:
- Functions
- 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 static interface Functions.TriConsumer<A,B,C> extends Functions.BiConsumer<A,B>
Represents an operation that accepts three input arguments and returns no result.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
accept(A a, B b)
Performs this operation on the given arguments.void
accept(A a, B b, C c)
Performs this operation on the given arguments.-
Methods inherited from interface aeonics.util.Functions.BiConsumer
accept
-
-
-
-
Method Detail
-
accept
default void accept(A a, B b) throws java.lang.Exception
Description copied from interface:Functions.BiConsumer
Performs this operation on the given arguments.- Specified by:
accept
in interfaceFunctions.BiConsumer<A,B>
- Parameters:
a
- the input argumentb
- the input argument- Throws:
java.lang.Exception
- if an error happens
-
-