Uses of Class
io.ray.api.WaitResult

Packages that use WaitResult
Package
Description
 
 
  • Uses of WaitResult in io.ray.api

    Methods in io.ray.api that return WaitResult
    Modifier and Type
    Method
    Description
    static <T> WaitResult<T>
    Ray.wait​(List<ObjectRef<T>> waitList)
    Wait for a list of RayObjects to be locally available.
    static <T> WaitResult<T>
    Ray.wait​(List<ObjectRef<T>> waitList, int numReturns)
    Wait for a list of RayObjects to be locally available, until specified number of objects are ready.
    static <T> WaitResult<T>
    Ray.wait​(List<ObjectRef<T>> waitList, int numReturns, int timeoutMs)
    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>
    Ray.wait​(List<ObjectRef<T>> waitList, int numReturns, int timeoutMs, boolean fetchLocal)
    Wait for a list of RayObjects to be available, until specified number of objects are ready, or specified timeout has passed.
  • Uses of WaitResult in io.ray.api.runtime

    Methods in io.ray.api.runtime that return WaitResult
    Modifier and Type
    Method
    Description
    <T> WaitResult<T>
    RayRuntime.wait​(List<ObjectRef<T>> waitList, int numReturns, int timeoutMs, boolean fetchLocal)
    Wait for a list of RayObjects to be available, until specified number of objects are ready, or specified timeout has passed.