Enum ReplyFailure

java.lang.Object
java.lang.Enum<ReplyFailure>
io.vertx.core.eventbus.ReplyFailure
All Implemented Interfaces:
Serializable, Comparable<ReplyFailure>

public enum ReplyFailure extends Enum<ReplyFailure>
Represents the type of reply failure
Author:
Tim Fox
  • Enum Constant Details

    • TIMEOUT

      public static final ReplyFailure TIMEOUT
      The message send failed because no reply was received before the timeout time.
    • NO_HANDLERS

      public static final ReplyFailure NO_HANDLERS
      The message send failed because no handlers were available to handle the message.
    • RECIPIENT_FAILURE

      public static final ReplyFailure RECIPIENT_FAILURE
      The message send failed because the recipient actively sent back a failure (rejected the message).
    • ERROR

      public static final ReplyFailure ERROR
      A fatal error occured while delivering the message. Do not retry to send.
  • Method Details

    • values

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

      public static ReplyFailure valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • fromInt

      public static ReplyFailure fromInt(int i)
    • toInt

      public int toInt()