A - The type of the concrete actor class.public interface ActorHandle<A> extends BaseActorHandle
A handle can be used to invoke a remote actor method, with the "call" method. For
example:
class MyActor {
public int echo(int x) {
return x;
}
}
// Create an actor, and get a handle.
ActorHandle<MyActor> myActor = Ray.actor(MyActor::new).remote();
// Call the `echo` method remotely.
ObjectRef<Integer> result = myActor.task(MyActor::echo, 1).remote();
// Get the result of the remote `echo` method.
Assert.assertEqual(result.get(), 1);
Note, the "call" method is defined in ActorCall interface, with multiple
overloaded versions.
| Modifier and Type | Method and Description |
|---|---|
default <R> ActorTaskCaller<R> |
task(RayFunc1<A,R> f) |
default <T0,R> ActorTaskCaller<R> |
task(RayFunc2<A,T0,R> f,
ObjectRef<T0> t0) |
default <T0,R> ActorTaskCaller<R> |
task(RayFunc2<A,T0,R> f,
T0 t0) |
default <T0,T1,R> ActorTaskCaller<R> |
task(RayFunc3<A,T0,T1,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1) |
default <T0,T1,R> ActorTaskCaller<R> |
task(RayFunc3<A,T0,T1,R> f,
ObjectRef<T0> t0,
T1 t1) |
default <T0,T1,R> ActorTaskCaller<R> |
task(RayFunc3<A,T0,T1,R> f,
T0 t0,
ObjectRef<T1> t1) |
default <T0,T1,R> ActorTaskCaller<R> |
task(RayFunc3<A,T0,T1,R> f,
T0 t0,
T1 t1) |
default <T0,T1,T2,R> |
task(RayFunc4<A,T0,T1,T2,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2) |
default <T0,T1,T2,R> |
task(RayFunc4<A,T0,T1,T2,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2) |
default <T0,T1,T2,R> |
task(RayFunc4<A,T0,T1,T2,R> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2) |
default <T0,T1,T2,R> |
task(RayFunc4<A,T0,T1,T2,R> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2) |
default <T0,T1,T2,R> |
task(RayFunc4<A,T0,T1,T2,R> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2) |
default <T0,T1,T2,R> |
task(RayFunc4<A,T0,T1,T2,R> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2) |
default <T0,T1,T2,R> |
task(RayFunc4<A,T0,T1,T2,R> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2) |
default <T0,T1,T2,R> |
task(RayFunc4<A,T0,T1,T2,R> f,
T0 t0,
T1 t1,
T2 t2) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
T3 t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2,
T3 t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2,
T3 t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2,
T3 t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
T3 t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2,
T3 t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2,
T3 t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
T0 t0,
T1 t1,
T2 t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3,R> |
task(RayFunc5<A,T0,T1,T2,T3,R> f,
T0 t0,
T1 t1,
T2 t2,
T3 t3) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
T1 t1,
T2 t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
T1 t1,
T2 t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
T1 t1,
T2 t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4,R> |
task(RayFunc6<A,T0,T1,T2,T3,T4,R> f,
T0 t0,
T1 t1,
T2 t2,
T3 t3,
T4 t4) |
default VoidActorTaskCaller |
task(RayFuncVoid1<A> f) |
default <T0> VoidActorTaskCaller |
task(RayFuncVoid2<A,T0> f,
ObjectRef<T0> t0) |
default <T0> VoidActorTaskCaller |
task(RayFuncVoid2<A,T0> f,
T0 t0) |
default <T0,T1> VoidActorTaskCaller |
task(RayFuncVoid3<A,T0,T1> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1) |
default <T0,T1> VoidActorTaskCaller |
task(RayFuncVoid3<A,T0,T1> f,
ObjectRef<T0> t0,
T1 t1) |
default <T0,T1> VoidActorTaskCaller |
task(RayFuncVoid3<A,T0,T1> f,
T0 t0,
ObjectRef<T1> t1) |
default <T0,T1> VoidActorTaskCaller |
task(RayFuncVoid3<A,T0,T1> f,
T0 t0,
T1 t1) |
default <T0,T1,T2> VoidActorTaskCaller |
task(RayFuncVoid4<A,T0,T1,T2> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2) |
default <T0,T1,T2> VoidActorTaskCaller |
task(RayFuncVoid4<A,T0,T1,T2> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2) |
default <T0,T1,T2> VoidActorTaskCaller |
task(RayFuncVoid4<A,T0,T1,T2> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2) |
default <T0,T1,T2> VoidActorTaskCaller |
task(RayFuncVoid4<A,T0,T1,T2> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2) |
default <T0,T1,T2> VoidActorTaskCaller |
task(RayFuncVoid4<A,T0,T1,T2> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2) |
default <T0,T1,T2> VoidActorTaskCaller |
task(RayFuncVoid4<A,T0,T1,T2> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2) |
default <T0,T1,T2> VoidActorTaskCaller |
task(RayFuncVoid4<A,T0,T1,T2> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2) |
default <T0,T1,T2> VoidActorTaskCaller |
task(RayFuncVoid4<A,T0,T1,T2> f,
T0 t0,
T1 t1,
T2 t2) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
T3 t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2,
T3 t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2,
T3 t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2,
T3 t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
T3 t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2,
T3 t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2,
T3 t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
T0 t0,
T1 t1,
T2 t2,
ObjectRef<T3> t3) |
default <T0,T1,T2,T3> |
task(RayFuncVoid5<A,T0,T1,T2,T3> f,
T0 t0,
T1 t1,
T2 t2,
T3 t3) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
ObjectRef<T1> t1,
T2 t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
T1 t1,
ObjectRef<T2> t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
ObjectRef<T0> t0,
T1 t1,
T2 t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
ObjectRef<T1> t1,
ObjectRef<T2> t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
ObjectRef<T1> t1,
T2 t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
T1 t1,
ObjectRef<T2> t2,
T3 t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
T1 t1,
T2 t2,
ObjectRef<T3> t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
T1 t1,
T2 t2,
ObjectRef<T3> t3,
T4 t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
T1 t1,
T2 t2,
T3 t3,
ObjectRef<T4> t4) |
default <T0,T1,T2,T3,T4> |
task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f,
T0 t0,
T1 t1,
T2 t2,
T3 t3,
T4 t4) |
getId, kill, killdefault <R> ActorTaskCaller<R> task(RayFunc1<A,R> f)
default VoidActorTaskCaller task(RayFuncVoid1<A> f)
default <T0,R> ActorTaskCaller<R> task(RayFunc2<A,T0,R> f, T0 t0)
default <T0,R> ActorTaskCaller<R> task(RayFunc2<A,T0,R> f, ObjectRef<T0> t0)
default <T0> VoidActorTaskCaller task(RayFuncVoid2<A,T0> f, T0 t0)
default <T0> VoidActorTaskCaller task(RayFuncVoid2<A,T0> f, ObjectRef<T0> t0)
default <T0,T1,R> ActorTaskCaller<R> task(RayFunc3<A,T0,T1,R> f, T0 t0, T1 t1)
default <T0,T1,R> ActorTaskCaller<R> task(RayFunc3<A,T0,T1,R> f, T0 t0, ObjectRef<T1> t1)
default <T0,T1,R> ActorTaskCaller<R> task(RayFunc3<A,T0,T1,R> f, ObjectRef<T0> t0, T1 t1)
default <T0,T1,R> ActorTaskCaller<R> task(RayFunc3<A,T0,T1,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1)
default <T0,T1> VoidActorTaskCaller task(RayFuncVoid3<A,T0,T1> f, T0 t0, T1 t1)
default <T0,T1> VoidActorTaskCaller task(RayFuncVoid3<A,T0,T1> f, T0 t0, ObjectRef<T1> t1)
default <T0,T1> VoidActorTaskCaller task(RayFuncVoid3<A,T0,T1> f, ObjectRef<T0> t0, T1 t1)
default <T0,T1> VoidActorTaskCaller task(RayFuncVoid3<A,T0,T1> f, ObjectRef<T0> t0, ObjectRef<T1> t1)
default <T0,T1,T2,R> ActorTaskCaller<R> task(RayFunc4<A,T0,T1,T2,R> f, T0 t0, T1 t1, T2 t2)
default <T0,T1,T2,R> ActorTaskCaller<R> task(RayFunc4<A,T0,T1,T2,R> f, T0 t0, T1 t1, ObjectRef<T2> t2)
default <T0,T1,T2,R> ActorTaskCaller<R> task(RayFunc4<A,T0,T1,T2,R> f, T0 t0, ObjectRef<T1> t1, T2 t2)
default <T0,T1,T2,R> ActorTaskCaller<R> task(RayFunc4<A,T0,T1,T2,R> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2)
default <T0,T1,T2,R> ActorTaskCaller<R> task(RayFunc4<A,T0,T1,T2,R> f, ObjectRef<T0> t0, T1 t1, T2 t2)
default <T0,T1,T2,R> ActorTaskCaller<R> task(RayFunc4<A,T0,T1,T2,R> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2)
default <T0,T1,T2,R> ActorTaskCaller<R> task(RayFunc4<A,T0,T1,T2,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2)
default <T0,T1,T2,R> ActorTaskCaller<R> task(RayFunc4<A,T0,T1,T2,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2)
default <T0,T1,T2> VoidActorTaskCaller task(RayFuncVoid4<A,T0,T1,T2> f, T0 t0, T1 t1, T2 t2)
default <T0,T1,T2> VoidActorTaskCaller task(RayFuncVoid4<A,T0,T1,T2> f, T0 t0, T1 t1, ObjectRef<T2> t2)
default <T0,T1,T2> VoidActorTaskCaller task(RayFuncVoid4<A,T0,T1,T2> f, T0 t0, ObjectRef<T1> t1, T2 t2)
default <T0,T1,T2> VoidActorTaskCaller task(RayFuncVoid4<A,T0,T1,T2> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2)
default <T0,T1,T2> VoidActorTaskCaller task(RayFuncVoid4<A,T0,T1,T2> f, ObjectRef<T0> t0, T1 t1, T2 t2)
default <T0,T1,T2> VoidActorTaskCaller task(RayFuncVoid4<A,T0,T1,T2> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2)
default <T0,T1,T2> VoidActorTaskCaller task(RayFuncVoid4<A,T0,T1,T2> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2)
default <T0,T1,T2> VoidActorTaskCaller task(RayFuncVoid4<A,T0,T1,T2> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, T0 t0, T1 t1, T2 t2, T3 t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, T0 t0, T1 t1, T2 t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, T0 t0, T1 t1, ObjectRef<T2> t2, T3 t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, T0 t0, T1 t1, ObjectRef<T2> t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, T0 t0, ObjectRef<T1> t1, T2 t2, T3 t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, T0 t0, ObjectRef<T1> t1, T2 t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2, T3 t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, ObjectRef<T0> t0, T1 t1, T2 t2, T3 t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, ObjectRef<T0> t0, T1 t1, T2 t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2, T3 t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2, T3 t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2, T3 t3)
default <T0,T1,T2,T3,R> ActorTaskCaller<R> task(RayFunc5<A,T0,T1,T2,T3,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, T0 t0, T1 t1, T2 t2, T3 t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, T0 t0, T1 t1, T2 t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, T0 t0, T1 t1, ObjectRef<T2> t2, T3 t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, T0 t0, T1 t1, ObjectRef<T2> t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, T0 t0, ObjectRef<T1> t1, T2 t2, T3 t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, T0 t0, ObjectRef<T1> t1, T2 t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2, T3 t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, ObjectRef<T0> t0, T1 t1, T2 t2, T3 t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, ObjectRef<T0> t0, T1 t1, T2 t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2, T3 t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2, T3 t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2, T3 t3)
default <T0,T1,T2,T3> VoidActorTaskCaller task(RayFuncVoid5<A,T0,T1,T2,T3> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2, ObjectRef<T3> t3)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, T1 t1, T2 t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, T1 t1, T2 t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, T1 t1, T2 t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, T1 t1, T2 t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, T1 t1, ObjectRef<T2> t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, T1 t1, ObjectRef<T2> t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, T1 t1, ObjectRef<T2> t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, T1 t1, ObjectRef<T2> t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, ObjectRef<T1> t1, T2 t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, ObjectRef<T1> t1, T2 t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, ObjectRef<T1> t1, T2 t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, ObjectRef<T1> t1, T2 t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, T1 t1, T2 t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, T1 t1, T2 t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, T1 t1, T2 t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, T1 t1, T2 t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4,R> ActorTaskCaller<R> task(RayFunc6<A,T0,T1,T2,T3,T4,R> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, T1 t1, T2 t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, T1 t1, T2 t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, T1 t1, T2 t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, T1 t1, T2 t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, T1 t1, ObjectRef<T2> t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, T1 t1, ObjectRef<T2> t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, T1 t1, ObjectRef<T2> t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, T1 t1, ObjectRef<T2> t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, ObjectRef<T1> t1, T2 t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, ObjectRef<T1> t1, T2 t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, ObjectRef<T1> t1, T2 t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, ObjectRef<T1> t1, T2 t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, T0 t0, ObjectRef<T1> t1, ObjectRef<T2> t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, T1 t1, T2 t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, T1 t1, T2 t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, T1 t1, T2 t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, T1 t1, T2 t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, T1 t1, ObjectRef<T2> t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, ObjectRef<T1> t1, T2 t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2, T3 t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2, T3 t3, ObjectRef<T4> t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2, ObjectRef<T3> t3, T4 t4)
default <T0,T1,T2,T3,T4> VoidActorTaskCaller task(RayFuncVoid6<A,T0,T1,T2,T3,T4> f, ObjectRef<T0> t0, ObjectRef<T1> t1, ObjectRef<T2> t2, ObjectRef<T3> t3, ObjectRef<T4> t4)
Copyright © 2023. All rights reserved.