public enum DeliveryType extends java.lang.Enum<DeliveryType>
| Enum Constant and Description |
|---|
ASYNCHRONOUS
Events are sent through a channel and processed by consumers asynchronously
|
ASYNCHRONOUS_WORKER
Events are sent asynchronously through channel and processed on a designated thread for each consumer
|
DEFAULT
Events are sent through a channel using default semantics
|
SYNCHRONOUS
Events are sent through a channel and processed by consumers synchronously
|
| Modifier and Type | Method and Description |
|---|---|
static DeliveryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeliveryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliveryType DEFAULT
public static final DeliveryType SYNCHRONOUS
public static final DeliveryType ASYNCHRONOUS
public static final DeliveryType ASYNCHRONOUS_WORKER
public static DeliveryType[] values()
for (DeliveryType c : DeliveryType.values()) System.out.println(c);
public static DeliveryType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null