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

    Modifier and Type
    Method
    Description
    void
    accept(T1 o1, T2 o2)
    Performs this operation on the given arguments.
  • Method Details

    • accept

      void accept(T1 o1, T2 o2) throws PsyErrorException
      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.