public enum SubscriberAckMode extends Enum<SubscriberAckMode>
| Enum Constant and Description |
|---|
AUTO
The message will be ACKed only if the flow that processes it finishes successfully.
|
IMMEDIATE
The message will be ACKed as soon as it is dispatched to the flow.
|
MANUAL
The subscriber will not handle any aspect of the acknowledgement of the message.
|
| Modifier and Type | Method and Description |
|---|---|
static SubscriberAckMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubscriberAckMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubscriberAckMode IMMEDIATE
public static final SubscriberAckMode AUTO
public static final SubscriberAckMode MANUAL
public static SubscriberAckMode[] values()
for (SubscriberAckMode c : SubscriberAckMode.values()) System.out.println(c);
public static SubscriberAckMode 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 © 2025 MuleSoft, Inc.. All rights reserved.