A - The type of the first argument to the operation.B - The type of the second argument to the operation.C - The type of the third argument to the operation.D - The type of the fourth argument to the operation.E - The type of the fifth argument to the operation.F - The type of the sixth argument to the operation.@FunctionalInterface public interface HexaConsumer<A,B,C,D,E,F> extends AtlanticConsumer<HexaFunction<A,B,C,D,E,F,Void>>
Consumer.
Unlike most other functional interfaces, HexaConsumer is expected to operate via side-effects.
This is a functional interface whose functional method is accept(Object, Object, Object, Object, Object, Object).| Modifier and Type | Method and Description |
|---|---|
void |
accept(A a,
B b,
C c,
D d,
E e,
F f)
Performs this operation on the given arguments.
|
default HexaFunction<A,B,C,D,E,F,Void> |
toFunction()
Converts this consumer into an
AtlanticFunction that executes this consumer and then returns null. |
void accept(A a, B b, C c, D d, E e, F f) throws Throwable
a - The first input argument.b - The second input argument.c - The third input argument.d - The fourth input argument.e - The fifth input argument.f - The sixth input argument.Throwable - Any exception that the operation will throw.default HexaFunction<A,B,C,D,E,F,Void> toFunction()
AtlanticConsumerAtlanticFunction that executes this consumer and then returns null.toFunction in interface AtlanticConsumer<HexaFunction<A,B,C,D,E,F,Void>>Copyright © 2018. All rights reserved.