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

io.ray.api.parallelactor.ParallelActorHandle Maven / Gradle / Ivy

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

import io.ray.api.ActorHandle;

/** The handle to a parallel actor. */
public interface ParallelActorHandle {

  /** Get an execution instance of the parallel actor by the given instance ID. */
  ParallelActorInstance getInstance(int instanceId);

  /** Get the parallelism of this parallel actor. */
  int getParallelism();

  /** Get the real actor handle to use. */
  ActorHandle getHandle();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy