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

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

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

import io.ray.api.ObjectRef;
import io.ray.api.Ray;
import io.ray.api.function.PyFunction;

/**
 * A helper to call python remote function.
 *
 * @param  The type of the python function return value
 */
public class PyTaskCaller extends BaseTaskCaller> {
  private final PyFunction func;
  private final Object[] args;

  public PyTaskCaller(PyFunction func, Object[] args) {
    this.func = func;
    this.args = args;
  }

  /**
   * Execute a python function remotely and return an object reference to the result object in the
   * object store.
   *
   * @return an object reference to an object in the object store.
   */
  @SuppressWarnings("unchecked")
  public ObjectRef remote() {
    return Ray.internal().call(func, args, buildOptions());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy