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

io.ray.api.options.ActorLifetime Maven / Gradle / Ivy

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

/** The enumeration class is used for declaring lifetime of actors. */
public enum ActorLifetime {
  DETACHED("DETACHED", 0),
  NON_DETACHED("NON_DETACHED", 1);

  private String name;
  private int value;

  ActorLifetime(String name, int value) {
    this.name = name;
    this.value = value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy