Module coneforest.psylla
Package coneforest.psylla.runtime
Interface ContextAction.TriConsumer<T1 extends PsyObject,T2 extends PsyObject,T3 extends PsyObject>
- Type Parameters:
T1- the type of the first input to the operation.T2- the type of the second input to the operation.T3- the type of the second input to the operation.
- Enclosing interface:
ContextAction
- 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 ContextAction.TriConsumer<T1 extends PsyObject,T2 extends PsyObject,T3 extends PsyObject>
Represents an operation that accepts three input arguments and returns no result.
-
Method Summary
-
Method Details
-
accept
Performs this operation on the given arguments.- Parameters:
o1- the first input to the tri-consumer.o2- the second input to the tri-consumer.o3- the third input to the tri-consumer.- Throws:
PsyErrorException- when an error occurs during operation.
-