public enum RequestReplyPattern extends Enum<RequestReplyPattern>
| Enum Constant and Description |
|---|
CORRELATION_ID
Indicates that when waiting for the reply, the consumer will use a selector looking a message with correlation ID with the
value of the outgoing correlation ID.
|
MESSAGE_ID
Indicates that when waiting for the reply, the consumer will use a selector looking a message with correlation ID with the
value of the outgoing message ID
|
NONE
Indicates that when waiting for a reply, the consumer will consume a message without using any selector.
|
| Modifier and Type | Method and Description |
|---|---|
org.mule.jms.commons.api.RequestReplyPattern |
get() |
static RequestReplyPattern |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestReplyPattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestReplyPattern CORRELATION_ID
public static final RequestReplyPattern MESSAGE_ID
public static final RequestReplyPattern NONE
public static RequestReplyPattern[] values()
for (RequestReplyPattern c : RequestReplyPattern.values()) System.out.println(c);
public static RequestReplyPattern 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 nullpublic org.mule.jms.commons.api.RequestReplyPattern get()
Copyright © 2025 MuleSoft, Inc.. All rights reserved.