Module coneforest.psylla
Package coneforest.psylla.runtime
Interface ContextAction.BiConsumer<T1 extends PsyObject,T2 extends PsyObject>
- Type Parameters:
T1
- the type of the first input to the operation.T2
- 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.BiConsumer<T1 extends PsyObject,T2 extends PsyObject>
Represents an operation that accepts two 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 bi-consumer.o2
- the second input to the bi-consumer.- Throws:
PsyErrorException
- when an error occurs during operation.
-