次の方法で共有


AmqpMessageConstant Enum

  • java.lang.Object
    • java.lang.Enum
      • com.azure.core.amqp.AmqpMessageConstant

public enum AmqpMessageConstant
extends Enum<AmqpMessageConstant>

Reserved well-known constants from AMQP protocol.

Fields

ABSOLUTE_EXPIRY_TIME

An absolute time when this message is considered to be expired.

CONTENT_ENCODING

The content-encoding property is used as a modifier to the content-type.

CONTENT_TYPE

The RFC-2046 MIME type for the message's application-data section (body).

CORRELATION_ID

This is a client-specific id that can be used to mark or identify messages between clients.

CREATION_TIME

An absolute time when this message was created.

DEAD_LETTER_DESCRIPTION_ANNOTATION_NAME

The identifier for deadletter description.

DEAD_LETTER_REASON_ANNOTATION_NAME

The identifier for deadletter reason.

DEAD_LETTER_SOURCE_KEY_ANNOTATION_NAME

The identifier for deadletter source.

ENQUEUED_SEQUENCE_NUMBER_ANNOTATION_NAME

The name representing enqueue sequence number.

ENQUEUED_TIME_UTC_ANNOTATION_NAME

The date and time, in UTC, that a message was enqueued.

GROUP_ID

Identifies the group the message belongs to.

GROUP_SEQUENCE

The relative position of this message within its group.

LOCKED_UNTIL_KEY_ANNOTATION_NAME

The identifier for locked until.

MESSAGE_ID

Message-id, if set, uniquely identifies a message within the message system.

MESSAGE_STATE_ANNOTATION_NAME

The state of message.

OFFSET_ANNOTATION_NAME

The offset of a message within a given partition.

PARTITION_KEY_ANNOTATION_NAME

The identifier associated with a given partition.

PUBLISHER_ANNOTATION_NAME

The name of the entity that published a message.

REPLY_TO

The address of the node to send replies to.

REPLY_TO_GROUP_ID

This is a client-specific id that is used so that client can send replies to this message to a specific group.

SCHEDULED_ENQUEUE_UTC_TIME_NAME

The name representing scheduled enqueue time.

SEQUENCE_NUMBER_ANNOTATION_NAME

The sequence number assigned to a message.

SUBJECT

A common field for summary information about the message content and purpose.

TO

The to field identifies the node that is the intended destination of the message.

USER_ID

The identity of the user responsible for producing the message.

VIA_PARTITION_KEY_ANNOTATION_NAME

The identifier associated with a given via-partition.

Methods inherited from java.lang.Enum

Methods inherited from java.lang.Object

Methods

fromString(String value)

public static AmqpMessageConstant fromString(String value)

Parses an header value to its message constant.

Parameters

value
String
the messaging header value to parse.

Returns

the parsed MessageConstant object, or null if unable to parse.

getValue()

public String getValue()

Gets the AMQP messaging header value.

Returns

The AMQP header value for this messaging constant.

valueOf(String name)

public static AmqpMessageConstant valueOf(String name)

Parameters

name
String

Returns

values()

public static AmqpMessageConstant[] values()

Returns

Applies to