io.ray.api.function.RayFunc3 Maven / Gradle / Ivy
// generated automatically, do not modify.
package io.ray.api.function;
/** Functional interface for a remote function that has 3 parameters. */
@FunctionalInterface
public interface RayFunc3 extends RayFuncR {
R apply(T0 t0, T1 t1, T2 t2) throws Exception;
}