Package dev.snowdrop.vertx.amqp
Interface AmqpMessage
-
public interface AmqpMessage
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringaddress()org.springframework.core.io.buffer.DataBufferbodyAsBinary()booleanbodyAsBoolean()bytebodyAsByte()charbodyAsChar()doublebodyAsDouble()floatbodyAsFloat()intbodyAsInteger()javax.json.JsonArraybodyAsJsonArray()javax.json.JsonObjectbodyAsJsonObject()<T> List<T>bodyAsList()longbodyAsLong()<K,V>
Map<K,V>bodyAsMap()shortbodyAsShort()StringbodyAsString()StringbodyAsSymbol()InstantbodyAsTimestamp()UUIDbodyAsUUID()StringcontentEncoding()StringcontentType()StringcorrelationId()static AmqpMessageBuildercreate()longcreationTime()intdeliveryCount()longexpiryTime()StringgroupId()longgroupSequence()Stringid()booleanisBodyNull()booleanisDurable()booleanisFirstAcquirer()intpriority()StringreplyTo()StringreplyToGroupId()Stringsubject()io.vertx.amqp.AmqpMessagetoVertxAmqpMessage()longttl()
-
-
-
Method Detail
-
create
static AmqpMessageBuilder create()
-
isDurable
boolean isDurable()
-
isFirstAcquirer
boolean isFirstAcquirer()
-
priority
int priority()
-
deliveryCount
int deliveryCount()
-
ttl
long ttl()
-
id
String id()
-
address
String address()
-
replyTo
String replyTo()
-
correlationId
String correlationId()
-
isBodyNull
boolean isBodyNull()
-
bodyAsBoolean
boolean bodyAsBoolean()
-
bodyAsByte
byte bodyAsByte()
-
bodyAsShort
short bodyAsShort()
-
bodyAsInteger
int bodyAsInteger()
-
bodyAsLong
long bodyAsLong()
-
bodyAsFloat
float bodyAsFloat()
-
bodyAsDouble
double bodyAsDouble()
-
bodyAsChar
char bodyAsChar()
-
bodyAsTimestamp
Instant bodyAsTimestamp()
-
bodyAsUUID
UUID bodyAsUUID()
-
bodyAsBinary
org.springframework.core.io.buffer.DataBuffer bodyAsBinary()
-
bodyAsString
String bodyAsString()
-
bodyAsSymbol
String bodyAsSymbol()
-
bodyAsList
<T> List<T> bodyAsList()
-
bodyAsMap
<K,V> Map<K,V> bodyAsMap()
-
bodyAsJsonObject
javax.json.JsonObject bodyAsJsonObject()
-
bodyAsJsonArray
javax.json.JsonArray bodyAsJsonArray()
-
subject
String subject()
-
contentType
String contentType()
-
contentEncoding
String contentEncoding()
-
expiryTime
long expiryTime()
-
creationTime
long creationTime()
-
groupId
String groupId()
-
replyToGroupId
String replyToGroupId()
-
groupSequence
long groupSequence()
-
toVertxAmqpMessage
io.vertx.amqp.AmqpMessage toVertxAmqpMessage()
-
-