public static enum InvocationConfiguration.OrderType extends Enum<InvocationConfiguration.OrderType>
| Enum Constant and Description |
|---|
BY_CALL
Order by call.
Data are passed to the invocation or the output consumer in the same order as they are passed to the channel, independently from the specific delay. |
BY_CHANCE
Order by chance.
There is no guarantee about the data order. |
BY_DELAY
Order by delay.
Data are passed to the invocation or the output consumer in the same order as they are delivered based on their delay. |
| Modifier and Type | Method and Description |
|---|---|
static InvocationConfiguration.OrderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvocationConfiguration.OrderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvocationConfiguration.OrderType BY_CALL
public static final InvocationConfiguration.OrderType BY_DELAY
public static final InvocationConfiguration.OrderType BY_CHANCE
public static InvocationConfiguration.OrderType[] values()
for (InvocationConfiguration.OrderType c : InvocationConfiguration.OrderType.values()) System.out.println(c);
public static InvocationConfiguration.OrderType 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 null