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

com.hubspot.singularity.runner.base.shared.Signal Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package com.hubspot.singularity.runner.base.shared;

public enum Signal {
  SIGTERM(15), SIGKILL(9), CHECK(0);

  private final int code;

  private Signal(int code) {
    this.code = code;
  }

  public int getCode() {
    return code;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy