Package io.ray.api

Class WaitResult<T>

java.lang.Object
io.ray.api.WaitResult<T>

public final class WaitResult<T> extends Object
Represents the result of a Ray.wait call. It contains 2 lists, one containing the locally available objects, one containing the rest.
  • Constructor Details

  • Method Details

    • getReady

      public List<ObjectRef<T>> getReady()
      Get the list of ready objects.
    • getUnready

      public List<ObjectRef<T>> getUnready()
      Get the list of unready objects.