Class ClientMessageSupport
java.lang.Object
org.apache.qpid.protonj2.client.impl.ClientMessageSupport
Support methods dealing with Message types and encode or decode operations.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic <E> AdvancedMessage<E>
convertMessage
(Message<E> message) Converts aMessage
instance into aClientMessage
instance either by cast or by construction of a new instance with a copy of the values carried in the given message.static <E> Section<E>
createSectionFromValue
(E body) static Message<?>
decodeMessage
(ProtonBuffer buffer, Consumer<DeliveryAnnotations> daConsumer) static Message<?>
decodeMessage
(Decoder decoder, ProtonBuffer buffer, Consumer<DeliveryAnnotations> daConsumer) static Message<?>
decodeMessage
(Decoder decoder, DecoderState decoderState, ProtonBuffer buffer, Consumer<DeliveryAnnotations> daConsumer) static ProtonBuffer
encodeMessage
(AdvancedMessage<?> message, Map<String, Object> deliveryAnnotations) static ProtonBuffer
encodeMessage
(AdvancedMessage<?> message, Map<String, Object> deliveryAnnotations, ProtonBufferAllocator allocator) static ProtonBuffer
encodeMessage
(Encoder encoder, ProtonBufferAllocator allocator, AdvancedMessage<?> message, Map<String, Object> deliveryAnnotations) static ProtonBuffer
encodeMessage
(Encoder encoder, EncoderState encoderState, ProtonBufferAllocator allocator, AdvancedMessage<?> message, Map<String, Object> deliveryAnnotations) static ProtonBuffer
encodeSection
(Section<?> section, ProtonBuffer buffer)
-
Constructor Details
-
ClientMessageSupport
public ClientMessageSupport()
-
-
Method Details
-
convertMessage
Converts aMessage
instance into aClientMessage
instance either by cast or by construction of a new instance with a copy of the values carried in the given message.- Type Parameters:
E
- the body type of the given message.- Parameters:
message
- TheMessage
type to attempt to convert to aClientMessage
instance.- Returns:
- a
ClientMessage
that represents the givenMessage
instance. - Throws:
ClientException
- if an unrecoverable error occurs during message conversion.
-
encodeSection
-
encodeMessage
public static ProtonBuffer encodeMessage(AdvancedMessage<?> message, Map<String, Object> deliveryAnnotations) throws ClientException- Throws:
ClientException
-
encodeMessage
public static ProtonBuffer encodeMessage(AdvancedMessage<?> message, Map<String, Object> deliveryAnnotations, ProtonBufferAllocator allocator) throws ClientException- Throws:
ClientException
-
encodeMessage
public static ProtonBuffer encodeMessage(Encoder encoder, ProtonBufferAllocator allocator, AdvancedMessage<?> message, Map<String, Object> deliveryAnnotations) throws ClientException- Throws:
ClientException
-
encodeMessage
public static ProtonBuffer encodeMessage(Encoder encoder, EncoderState encoderState, ProtonBufferAllocator allocator, AdvancedMessage<?> message, Map<String, Object> deliveryAnnotations) throws ClientException- Throws:
ClientException
-
decodeMessage
public static Message<?> decodeMessage(ProtonBuffer buffer, Consumer<DeliveryAnnotations> daConsumer) throws ClientException - Throws:
ClientException
-
decodeMessage
public static Message<?> decodeMessage(Decoder decoder, ProtonBuffer buffer, Consumer<DeliveryAnnotations> daConsumer) throws ClientException - Throws:
ClientException
-
decodeMessage
public static Message<?> decodeMessage(Decoder decoder, DecoderState decoderState, ProtonBuffer buffer, Consumer<DeliveryAnnotations> daConsumer) throws ClientException - Throws:
ClientException
-
createSectionFromValue
-