Uses of Interface
io.ray.api.function.RayFunc
Packages that use RayFunc
Package
Description
-
Uses of RayFunc in io.ray.api.concurrencygroup
Methods in io.ray.api.concurrencygroup with parameters of type RayFuncModifier and TypeMethodDescriptionprotected ConcurrencyGroupBuilder<A>ConcurrencyGroupBuilder.internalAddMethod(RayFunc func) -
Uses of RayFunc in io.ray.api.function
Subinterfaces of RayFunc in io.ray.api.functionModifier and TypeInterfaceDescriptioninterfaceRayFunc0<R>Functional interface for a remote function that has 0 parameter.interfaceRayFunc1<T0,R>Functional interface for a remote function that has 1 parameter.interfaceRayFunc2<T0,T1,R>Functional interface for a remote function that has 2 parameters.interfaceRayFunc3<T0,T1,T2,R>Functional interface for a remote function that has 3 parameters.interfaceRayFunc4<T0,T1,T2,T3,R>Functional interface for a remote function that has 4 parameters.interfaceRayFunc5<T0,T1,T2,T3,T4,R>Functional interface for a remote function that has 5 parameters.interfaceRayFunc6<T0,T1,T2,T3,T4,T5,R>Functional interface for a remote function that has 6 parameters.interfaceRayFuncR<R>Interface of all Ray remote functions which have a return value.interfaceInterface of all `RayFuncVoidX` classes.interfaceFunctional interface for a remote function that has 0 parameter.interfaceRayFuncVoid1<T0>Functional interface for a remote function that has 1 parameter.interfaceRayFuncVoid2<T0,T1>Functional interface for a remote function that has 2 parameters.interfaceRayFuncVoid3<T0,T1,T2>Functional interface for a remote function that has 3 parameters.interfaceRayFuncVoid4<T0,T1,T2,T3>Functional interface for a remote function that has 4 parameters.interfaceRayFuncVoid5<T0,T1,T2,T3,T4>Functional interface for a remote function that has 5 parameters.interfaceRayFuncVoid6<T0,T1,T2,T3,T4,T5>Functional interface for a remote function that has 6 parameters. -
Uses of RayFunc in io.ray.api.parallelactor
Methods in io.ray.api.parallelactor with parameters of type RayFuncModifier and TypeMethodDescription<A, R> ObjectRef<R>ParallelActorContext.submitTask(ParallelActorHandle<A> parallelActorHandle, int instanceId, RayFunc func, Object[] args) -
Uses of RayFunc in io.ray.api.runtime
Methods in io.ray.api.runtime with parameters of type RayFuncModifier and TypeMethodDescriptionRayRuntime.call(RayFunc func, Object[] args, CallOptions options)Invoke a remote function.RayRuntime.callActor(ActorHandle<?> actor, RayFunc func, Object[] args, CallOptions options)Invoke a remote function on an actor.<T> ActorHandle<T>RayRuntime.createActor(RayFunc actorFactoryFunc, Object[] args, ActorCreationOptions options)Create an actor on a remote node.Method parameters in io.ray.api.runtime with type arguments of type RayFuncModifier and TypeMethodDescriptionRayRuntime.createConcurrencyGroup(String name, int maxConcurrency, List<RayFunc> funcs)Create concurrency group instance at runtime.