public enum SubQueue extends Enum<SubQueue>
| Enum Constant and Description |
|---|
DEAD_LETTER_QUEUE
Connect to a queue or subscription's dead-letter queue.
|
NONE
Connect to the default entity (directly to the queue or subscription)
|
TRANSFER_DEAD_LETTER_QUEUE
Connect to a queue or subscription's transfer dead-letter queue.
|
| Modifier and Type | Method and Description |
|---|---|
static SubQueue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubQueue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubQueue NONE
public static final SubQueue DEAD_LETTER_QUEUE
ServiceBusReceiverClient and ServiceBusReceiverAsyncClient to
consume dead-letter messages from Service Bus entity.public static final SubQueue TRANSFER_DEAD_LETTER_QUEUE
ServiceBusReceiverClient and ServiceBusReceiverAsyncClient to
consume transfer dead-letter messages from Service Bus entity.public static SubQueue[] values()
public static SubQueue 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 nullVisit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.