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

com.ververica.common.model.sessioncluster.SessionClusterStatusState Maven / Gradle / Ivy

package com.ververica.common.model.sessioncluster;

public enum SessionClusterStatusState {
  STOPPED,

  STARTING,

  RUNNING,

  UPDATING,

  STOPPING,

  FAILED,

  FORCESTOP;

  public boolean isTerminal() {
    return this == STOPPED || this == FAILED;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy