Add timeout param to ray.get (#6107)

This commit is contained in:
Ujval Misra
2019-11-14 00:50:04 -08:00
committed by Richard Liaw
parent e4c0843f60
commit e3e3ad4b25
12 changed files with 100 additions and 20 deletions
+5
View File
@@ -73,6 +73,9 @@ cdef extern from "ray/common/status.h" namespace "ray" nogil:
@staticmethod
CRayStatus RedisError(const c_string &msg)
@staticmethod
CRayStatus TimedOut(const c_string &msg)
@staticmethod
CRayStatus Interrupted(const c_string &msg)
@@ -89,7 +92,9 @@ cdef extern from "ray/common/status.h" namespace "ray" nogil:
c_bool IsNotImplemented()
c_bool IsObjectStoreFull()
c_bool IsRedisError()
c_bool IsTimedOut()
c_bool IsInterrupted()
c_bool IsSystemExit()
c_string ToString()
c_string CodeAsString()