Enum AmqpFailureHandler.Strategy
java.lang.Object
java.lang.Enum<AmqpFailureHandler.Strategy>
io.smallrye.reactive.messaging.amqp.fault.AmqpFailureHandler.Strategy
- All Implemented Interfaces:
Serializable,Comparable<AmqpFailureHandler.Strategy>
- Enclosing interface:
- AmqpFailureHandler
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionMark the message asacceptedand continue.Mark the message asrejectedand die.Mark the message asmodifiedand continue.Mark the message asmodifiedand continue.Mark the message asrejectedand continue.Mark the message asreleasedand continue. -
Method Summary
Modifier and TypeMethodDescriptionstatic AmqpFailureHandler.Strategystatic AmqpFailureHandler.StrategyReturns the enum constant of this type with the specified name.static AmqpFailureHandler.Strategy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
FAIL
Mark the message asrejectedand die. -
ACCEPT
Mark the message asacceptedand continue. -
RELEASE
Mark the message asreleasedand continue. -
REJECT
Mark the message asrejectedand continue. -
MODIFIED_FAILED
Mark the message asmodifiedand continue. This strategy increments the delivery count. The message may be re-delivered on the same node. -
MODIFIED_FAILED_UNDELIVERABLE_HERE
Mark the message asmodifiedand continue. This strategy increments the delivery count and mark the message as undeliverable on this node. The message cannot be re-delivered on the same node, but may be redelivered on another node.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
from
-