Class AmqpMessageBuilder<T>
- java.lang.Object
-
- io.smallrye.reactive.messaging.amqp.AmqpMessageBuilder<T>
-
- Type Parameters:
T
-
@Deprecated public class AmqpMessageBuilder<T> extends Object
Deprecated.UseOutgoingAmqpMetadata
instead.
-
-
Method Summary
-
-
-
Method Detail
-
withPriority
public AmqpMessageBuilder<T> withPriority(short priority)
Deprecated.
-
withDurable
public AmqpMessageBuilder<T> withDurable(boolean durable)
Deprecated.
-
withTtl
public AmqpMessageBuilder<T> withTtl(long ttl)
Deprecated.
-
withId
public AmqpMessageBuilder<T> withId(String id)
Deprecated.
-
withAddress
public AmqpMessageBuilder<T> withAddress(String address)
Deprecated.
-
withReplyTo
public AmqpMessageBuilder<T> withReplyTo(String replyTo)
Deprecated.
-
withCorrelationId
public AmqpMessageBuilder<T> withCorrelationId(String correlationId)
Deprecated.
-
withBody
public AmqpMessageBuilder<T> withBody(String value)
Deprecated.
-
withSymbolAsBody
public AmqpMessageBuilder<T> withSymbolAsBody(String value)
Deprecated.
-
withSubject
public AmqpMessageBuilder<T> withSubject(String subject)
Deprecated.
-
withContentType
public AmqpMessageBuilder<T> withContentType(String ct)
Deprecated.
-
withContentEncoding
public AmqpMessageBuilder<T> withContentEncoding(String ct)
Deprecated.
-
withGroupId
public AmqpMessageBuilder<T> withGroupId(String gi)
Deprecated.
-
withReplyToGroupId
public AmqpMessageBuilder<T> withReplyToGroupId(String rt)
Deprecated.
-
withApplicationProperties
public AmqpMessageBuilder<T> withApplicationProperties(io.vertx.core.json.JsonObject props)
Deprecated.
-
withBooleanAsBody
public AmqpMessageBuilder<T> withBooleanAsBody(boolean v)
Deprecated.
-
withByteAsBody
public AmqpMessageBuilder<T> withByteAsBody(byte v)
Deprecated.
-
withShortAsBody
public AmqpMessageBuilder<T> withShortAsBody(short v)
Deprecated.
-
withIntegerAsBody
public AmqpMessageBuilder<T> withIntegerAsBody(int v)
Deprecated.
-
withLongAsBody
public AmqpMessageBuilder<T> withLongAsBody(long v)
Deprecated.
-
withFloatAsBody
public AmqpMessageBuilder<T> withFloatAsBody(float v)
Deprecated.
-
withDoubleAsBody
public AmqpMessageBuilder<T> withDoubleAsBody(double v)
Deprecated.
-
withCharAsBody
public AmqpMessageBuilder<T> withCharAsBody(char c)
Deprecated.
-
withBufferAsBody
public AmqpMessageBuilder<T> withBufferAsBody(io.vertx.mutiny.core.buffer.Buffer buffer)
Deprecated.
-
withJsonObjectAsBody
public AmqpMessageBuilder<T> withJsonObjectAsBody(io.vertx.core.json.JsonObject json)
Deprecated.
-
withJsonArrayAsBody
public AmqpMessageBuilder<T> withJsonArrayAsBody(io.vertx.core.json.JsonArray json)
Deprecated.
-
withInstantAsBody
public AmqpMessageBuilder<T> withInstantAsBody(Instant v)
Deprecated.
-
withUuidAsBody
public AmqpMessageBuilder<T> withUuidAsBody(UUID v)
Deprecated.
-
build
public AmqpMessage<T> build()
Deprecated.
-
-