Interface BinaryProcedure<P1,P2>


@Deprecated(since="5.2.231004") public interface BinaryProcedure<P1,P2>
Deprecated.
since 5.2.231004 - Use BiConsumer instead
Simple procedure callback to be called with two type safe parameters.
Since:
4.2.416
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    invoke(P1 param1, P2 param2)
    Deprecated.
    Procedure call of this binary function.
  • Method Details

    • invoke

      void invoke(P1 param1, P2 param2)
      Deprecated.
      Procedure call of this binary function.
      Parameters:
      param1 - the first parameter for this procedure call
      param2 - the second parameter for this procedure call
      Since:
      4.2.416