Enum Class NackAction

java.lang.Object
java.lang.Enum<NackAction>
com.eventstore.dbclient.NackAction
All Implemented Interfaces:
Serializable, Comparable<NackAction>, Constable

public enum NackAction extends Enum<NackAction>
Gathers every possible Nak actions.
  • Enum Constant Details

    • Unknown

      public static final NackAction Unknown
      Client does not know what action to take, let the server decide.
    • Park

      public static final NackAction Park
      Park message do not resend. Put on poison queue.
    • Retry

      public static final NackAction Retry
      Explicit retry the message.
    • Skip

      public static final NackAction Skip
      Skip this message do not resend do not put in poison queue.
    • Stop

      public static final NackAction Stop
      Stop the subscription.
  • Method Details

    • values

      public static NackAction[] 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 NackAction 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