Interface SaTwoParamFunction<T,T2>

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 interface SaTwoParamFunction<T,T2>
双形参、无返回值的函数式接口,方便开发者进行 lambda 表达式风格调用
Since:
1.41.0
Author:
click33
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    run(T r, T2 r2)
    执行的方法
  • Method Details

    • run

      void run(T r, T2 r2)
      执行的方法
      Parameters:
      r - 传入的参数
      r2 - 传入的参数 2