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