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

com.hubspot.singularity.RequestState Maven / Gradle / Ivy

The newest version!
package com.hubspot.singularity;

public enum RequestState {

  ACTIVE(true), DELETED(false), PAUSED(false), SYSTEM_COOLDOWN(true), FINISHED(false), DEPLOYING_TO_UNPAUSE(true);

  private final boolean isRunnable;

  private RequestState(boolean isRunnable) {
    this.isRunnable = isRunnable;
  }

  public boolean isRunnable() {
    return isRunnable;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy