Enum Class Priority

java.lang.Object
java.lang.Enum<Priority>
com.codebarrel.automation.api.event.Priority
All Implemented Interfaces:
Serializable, Comparable<Priority>, Constable

public enum Priority extends Enum<Priority>
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Should be used for events that should execute relatively quickly, like issue events and webhooks.
    This is reserved for events that require processing as fast as possible such as manual executions
    This is reserved for branches that should be executed inline
    Events that aren't time sensitive should execute with low priority (e.g.
    This is reserved for system events of the lowest priority that shouldn't affect user facing rules.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
     
    static Priority
    Returns the enum constant of this class with the specified name.
    static Priority[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • INLINE

      public static final Priority INLINE
      This is reserved for branches that should be executed inline
    • IMMEDIATE

      public static final Priority IMMEDIATE
      This is reserved for events that require processing as fast as possible such as manual executions
    • HIGH

      public static final Priority HIGH
      Should be used for events that should execute relatively quickly, like issue events and webhooks.
    • LOW

      public static final Priority LOW
      Events that aren't time sensitive should execute with low priority (e.g. scheduled rule executions)
    • SYSTEM_BATCH

      public static final Priority SYSTEM_BATCH
      This is reserved for system events of the lowest priority that shouldn't affect user facing rules.
  • Method Details

    • values

      public static Priority[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Priority valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getIntValue

      public int getIntValue()