Interface SaParamRetFunction<T,R>

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 SaParamRetFunction<T,R>
单形参、有返回值的函数式接口,方便开发者进行 lambda 表达式风格调用
Since:
1.27.0
Author:
click33
  • Method Summary

    Modifier and Type
    Method
    Description
    run(T param)
    执行的方法
  • Method Details

    • run

      R run(T param)
      执行的方法
      Parameters:
      param - 传入的参数
      Returns:
      返回值