Package io.ray.api
Interface PyActorHandle
- All Superinterfaces:
BaseActorHandle
Handle of a Python actor.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the name of the Python actor class.Returns the module name of the Python actor class.default <R> PyActorTaskCaller<R>task(PyActorMethod<R> pyActorMethod)default <R> PyActorTaskCaller<R>task(PyActorMethod<R> pyActorMethod, Object obj0)default <R> PyActorTaskCaller<R>task(PyActorMethod<R> pyActorMethod, Object obj0, Object obj1)default <R> PyActorTaskCaller<R>task(PyActorMethod<R> pyActorMethod, Object obj0, Object obj1, Object obj2)default <R> PyActorTaskCaller<R>default <R> PyActorTaskCaller<R>task(PyActorMethod<R> pyActorMethod, Object obj0, Object obj1, Object obj2, Object obj3, Object obj4)Methods inherited from interface io.ray.api.BaseActorHandle
getId, kill, kill
-
Method Details
-
getModuleName
String getModuleName()Returns the module name of the Python actor class. -
getClassName
String getClassName()Returns the name of the Python actor class. -
task
-
task
-
task
-
task
default <R> PyActorTaskCaller<R> task(PyActorMethod<R> pyActorMethod, Object obj0, Object obj1, Object obj2) -
task
default <R> PyActorTaskCaller<R> task(PyActorMethod<R> pyActorMethod, Object obj0, Object obj1, Object obj2, Object obj3) -
task
default <R> PyActorTaskCaller<R> task(PyActorMethod<R> pyActorMethod, Object obj0, Object obj1, Object obj2, Object obj3, Object obj4)
-