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

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

    • accept

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