All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ray.api.call.VoidActorTaskCaller Maven / Gradle / Ivy

There is a newer version: 2.36.0
Show newest version
package io.ray.api.call;

import io.ray.api.ActorHandle;
import io.ray.api.Ray;
import io.ray.api.function.RayFuncVoid;
import io.ray.api.options.CallOptions;

/** A helper to call java actor method which doesn't have a return value. */
public class VoidActorTaskCaller {
  private final ActorHandle actor;
  private final RayFuncVoid func;
  private final Object[] args;
  private CallOptions.Builder builder = new CallOptions.Builder();

  public VoidActorTaskCaller(ActorHandle actor, RayFuncVoid func, Object[] args) {
    this.actor = actor;
    this.func = func;
    this.args = args;
  }

  public VoidActorTaskCaller setConcurrencyGroup(String name) {
    builder.setConcurrencyGroupName(name);
    return self();
  }

  private VoidActorTaskCaller self() {
    return this;
  }

  /** Execute a function remotely. */
  public void remote() {
    Ray.internal().callActor(actor, func, args, builder.build());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy