public static enum RabbitMQAckHandler.Strategy extends Enum<RabbitMQAckHandler.Strategy>
Enum Constant and Description |
---|
AUTO
Do no explicitly ack as it will be handled by RabbitMQ itself.
|
MANUAL
Explicit acks.
|
Modifier and Type | Method and Description |
---|---|
static RabbitMQAckHandler.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RabbitMQAckHandler.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RabbitMQAckHandler.Strategy AUTO
public static final RabbitMQAckHandler.Strategy MANUAL
public static RabbitMQAckHandler.Strategy[] values()
for (RabbitMQAckHandler.Strategy c : RabbitMQAckHandler.Strategy.values()) System.out.println(c);
public static RabbitMQAckHandler.Strategy valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2018–2021 SmallRye. All rights reserved.