Uses of Interface
io.ray.api.ObjectRef
Packages that use ObjectRef
-
Uses of ObjectRef in io.ray.api
Methods in io.ray.api that return ObjectRefModifier and TypeMethodDescriptionstatic <T> ObjectRef<T>Ray.put(T obj)Store an object in the object store.static <T> ObjectRef<T>Ray.put(T obj, BaseActorHandle owner)Store an object in the object store and assign its ownership to owner.Methods in io.ray.api that return types with arguments of type ObjectRefModifier and TypeMethodDescriptionWaitResult.getReady()Get the list of ready objects.WaitResult.getUnready()Get the list of unready objects.Methods in io.ray.api with parameters of type ObjectRefModifier and TypeMethodDescriptionstatic <T> TGet an object by `ObjectRef` from the object store.static <T> TGet an object by `ObjectRef` from the object store.Method parameters in io.ray.api with type arguments of type ObjectRefModifier and TypeMethodDescriptionstatic <T> List<T>Get a list of objects by `ObjectRef`s from the object store.static <T> List<T>Get a list of objects by `ObjectRef`s from the object store.static <T> WaitResult<T>Wait for a list of RayObjects to be locally available.static <T> WaitResult<T>Wait for a list of RayObjects to be locally available, until specified number of objects are ready.static <T> WaitResult<T>Wait for a list of RayObjects to be locally available, until specified number of objects are ready, or specified timeout has passed.static <T> WaitResult<T>Wait for a list of RayObjects to be available, until specified number of objects are ready, or specified timeout has passed.Constructor parameters in io.ray.api with type arguments of type ObjectRef -
Uses of ObjectRef in io.ray.api.call
Methods in io.ray.api.call that return ObjectRefModifier and TypeMethodDescriptionActorTaskCaller.remote()Execute an java actor method remotely and return an object reference to the result object in the object store.PyActorTaskCaller.remote()Execute a python actor method remotely and return an object reference to the result object in the object store.PyTaskCaller.remote()Execute a python function remotely and return an object reference to the result object in the object store.TaskCaller.remote()Execute a java function remotely and return an object reference to the result object in the object store. -
Uses of ObjectRef in io.ray.api.parallelactor
Methods in io.ray.api.parallelactor that return ObjectRefModifier and TypeMethodDescriptionParallelActorTaskCaller.remote()<A, R> ObjectRef<R>ParallelActorContext.submitTask(ParallelActorHandle<A> parallelActorHandle, int instanceId, RayFunc func, Object[] args) -
Uses of ObjectRef in io.ray.api.runtime
Methods in io.ray.api.runtime that return ObjectRefModifier and TypeMethodDescriptionRayRuntime.call(PyFunction pyFunction, Object[] args, CallOptions options)Invoke a remote Python function.RayRuntime.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.RayRuntime.callActor(PyActorHandle pyActor, PyActorMethod pyActorMethod, Object[] args)Invoke a remote Python function on an actor.<T> ObjectRef<T>RayRuntime.put(T obj)Store an object in the object store.<T> ObjectRef<T>RayRuntime.put(T obj, BaseActorHandle owner)Store an object in the object store, and assign its ownership to owner.Methods in io.ray.api.runtime with parameters of type ObjectRefModifier and TypeMethodDescription<T> TGet an object from the object store.<T> TGet an object from the object store.Method parameters in io.ray.api.runtime with type arguments of type ObjectRefModifier and TypeMethodDescriptionvoidFree a list of objects from Plasma Store.<T> List<T>Get a list of objects from the object store.<T> List<T>Get a list of objects from the object store.<T> WaitResult<T>Wait for a list of RayObjects to be available, until specified number of objects are ready, or specified timeout has passed.