Package com.rabbitmq.stream
Interface Properties
-
public interface Properties
Message properties.Please see section 3.2 "message format" of the AMQP 1.0 specification to find out about the exact meaning of the message sections.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getAbsoluteExpiryTime()
String
getContentEncoding()
String
getContentType()
Object
getCorrelationId()
byte[]
getCorrelationIdAsBinary()
long
getCorrelationIdAsLong()
String
getCorrelationIdAsString()
UUID
getCorrelationIdAsUuid()
long
getCreationTime()
String
getGroupId()
long
getGroupSequence()
Object
getMessageId()
byte[]
getMessageIdAsBinary()
long
getMessageIdAsLong()
String
getMessageIdAsString()
UUID
getMessageIdAsUuid()
String
getReplyTo()
String
getReplyToGroupId()
String
getSubject()
String
getTo()
byte[]
getUserId()
-
-
-
Method Detail
-
getMessageId
Object getMessageId()
-
getMessageIdAsString
String getMessageIdAsString()
-
getMessageIdAsLong
long getMessageIdAsLong()
-
getMessageIdAsBinary
byte[] getMessageIdAsBinary()
-
getMessageIdAsUuid
UUID getMessageIdAsUuid()
-
getUserId
byte[] getUserId()
-
getTo
String getTo()
-
getSubject
String getSubject()
-
getReplyTo
String getReplyTo()
-
getCorrelationId
Object getCorrelationId()
-
getCorrelationIdAsString
String getCorrelationIdAsString()
-
getCorrelationIdAsLong
long getCorrelationIdAsLong()
-
getCorrelationIdAsBinary
byte[] getCorrelationIdAsBinary()
-
getCorrelationIdAsUuid
UUID getCorrelationIdAsUuid()
-
getContentType
String getContentType()
-
getContentEncoding
String getContentEncoding()
-
getAbsoluteExpiryTime
long getAbsoluteExpiryTime()
-
getCreationTime
long getCreationTime()
-
getGroupId
String getGroupId()
-
getGroupSequence
long getGroupSequence()
-
getReplyToGroupId
String getReplyToGroupId()
-
-