Wait for a list of RayObjects to be available, until specified number of objects are ready, or specified timeout has passed. @param waitList A list of ObjectRef to wait for. @param numReturns The number of objects that should be returned. @param timeoutMs The maximum time in milliseconds to wait be
(
List<ObjectRef<T>> waitList, int numReturns, int timeoutMs, boolean fetchLocal)
| 95 | * @return Two lists, one containing locally available objects, one containing the rest. |
| 96 | */ |
| 97 | <T> WaitResult<T> wait( |
| 98 | List<ObjectRef<T>> waitList, int numReturns, int timeoutMs, boolean fetchLocal); |
| 99 | |
| 100 | /** |
no outgoing calls