Enum ReplyFailure

    • Enum Constant Detail

      • 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 Detail

      • values

        public static ReplyFailure[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ReplyFailure c : ReplyFailure.values())
            System.out.println(c);
        
        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
      • toInt

        public int toInt()