Interface OutgoingDelivery
- All Known Implementing Classes:
ProtonOutgoingDelivery
-
Method Summary
Modifier and TypeMethodDescriptionabort()
Aborts the outgoing delivery if not already settled.Handler for updates to the remote state of outgoing deliveries that have begun transferring frames.disposition
(DeliveryState state) updates the state of the deliverydisposition
(DeliveryState state, boolean settle) Update the delivery with the given disposition if not locally settled and optionally settles the delivery if not already settled.getLink()
<T> T
<T> T
getLinkedResource
(Class<T> typeClass) Gets the linked resource (if set) and returns it using the type information provided to cast the returned value.int
Gets the message-format for this Delivery, representing the 32bit value using an int.getState()
getTag()
int
Returns the total number of transfer frames that have occurred for the givenOutgoingDelivery
.boolean
boolean
Check for whether the delivery is still partial.boolean
boolean
setLinkedResource
(Object resource) Links a given resource to thisEndpoint
.setMessageFormat
(int messageFormat) Sets the message-format for this Delivery, representing the 32bit value using an integer value.setTag
(byte[] deliveryTag) Sets the delivery tag to assign to this outgoing delivery from the given byte array.setTag
(DeliveryTag deliveryTag) Sets theDeliveryTag
to assign to this outgoing delivery.settle()
Settles this delivery if not already settled.streamBytes
(ProtonBuffer buffer) Write the given bytes as a portion of the payload of this delivery, additional bytes can be streamed until the stream complete flag is set to true on a call tostreamBytes(ProtonBuffer, boolean)
or a call towriteBytes(ProtonBuffer)
is made.streamBytes
(ProtonBuffer buffer, boolean complete) Write the given bytes as a portion of the payload of this delivery, additional bytes can be streamed until the stream complete flag is set to true on a call tostreamBytes(ProtonBuffer, boolean)
and the buffer contents on that send are fully written.writeBytes
(ProtonBuffer buffer) Write the given bytes as the payload of this delivery, no additional writes can occur on this delivery if the write succeeds in sending all of the given bytes.
-
Method Details
-
getLink
Sender getLink()- Returns:
- the link that this
OutgoingDelivery
is bound to.
-
getAttachments
Attachments getAttachments()- Returns:
- the
Attachments
instance that is associated with thisOutgoingDelivery
-
setLinkedResource
Links a given resource to thisEndpoint
.- Parameters:
resource
- The resource to link to thisEndpoint
.- Returns:
- this
OutgoingDelivery
instance.
-
getLinkedResource
<T> T getLinkedResource()- Type Parameters:
T
- The type that the linked resource should be cast to on return.- Returns:
- the user set linked resource for this
Endpoint
instance.
-
getLinkedResource
Gets the linked resource (if set) and returns it using the type information provided to cast the returned value.- Type Parameters:
T
- The type to cast the linked resource to if one is set.- Parameters:
typeClass
- the type's Class which is used for casting the returned value.- Returns:
- the user set linked resource for this Context instance.
- Throws:
ClassCastException
- if the linked resource cannot be cast to the type requested.
-
getMessageFormat
int getMessageFormat()Gets the message-format for this Delivery, representing the 32bit value using an int.The default value is 0 as per the message format defined in the core AMQP 1.0 specification.
See the following for more details:
http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-transport-v1.0-os.html#type-transfer
http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-transport-v1.0-os.html#type-message-format
http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-messaging-v1.0-os.html#section-message-format
http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-messaging-v1.0-os.html#definition-MESSAGE-FORMAT- Returns:
- the message-format for this Delivery.
-
setMessageFormat
Sets the message-format for this Delivery, representing the 32bit value using an integer value. The message format can only be set@Override prior to the firstTransfer
of delivery payload having been written. If one of the delivery write methods is called prior to the message format being set then it defaults to the AMQP default format of zero.The default value is 0 as per the message format defined in the core AMQP 1.0 specification.
See the following for more details:
http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-transport-v1.0-os.html#type-transfer
http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-transport-v1.0-os.html#type-message-format
http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-messaging-v1.0-os.html#section-message-format
http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-messaging-v1.0-os.html#definition-MESSAGE-FORMAT- Parameters:
messageFormat
- the message format- Returns:
- this
OutgoingDelivery
instance. - Throws:
IllegalStateException
- if the delivery has already writtenTransfer
frames.
-
getTag
DeliveryTag getTag()- Returns:
- the
DeliveryTag
assigned to this Delivery.
-
setTag
Sets the delivery tag to assign to this outgoing delivery from the given byte array.- Parameters:
deliveryTag
- a byte array containing the delivery tag to assign to thisOutgoingDelivery
- Returns:
- this
OutgoingDelivery
instance. - Throws:
IllegalStateException
- if the delivery has already writtenTransfer
frames.
-
setTag
Sets theDeliveryTag
to assign to this outgoing delivery.- Parameters:
deliveryTag
- a byte array containing the delivery tag to assign to thisOutgoingDelivery
- Returns:
- this
OutgoingDelivery
instance.
-
isPartial
boolean isPartial()Check for whether the delivery is still partial.For a receiving Delivery, this means the delivery does not hold a complete message payload as all the content hasn't been received yet. Note that an
aborted
delivery will also be considered partial and the full payload won't be received.For a sending Delivery, this means that the application has not marked the delivery as complete yet.
- Returns:
- true if the delivery is partial
- See Also:
-
writeBytes
Write the given bytes as the payload of this delivery, no additional writes can occur on this delivery if the write succeeds in sending all of the given bytes.When called the provided buffer is treated as containing the entirety of the transfer payload and the Transfer(s) that result from this call will result in a final Transfer frame whose more flag is set to false which tells the remote that no additional data will be sent for this
Transfer
. TheSender
will output as much of the buffer as possible within the constraints of both the link credit and the current capacity of the parentSession
.The caller must check that all bytes were written and if not they should await updates from the
Link.creditStateUpdateHandler(EventHandler)
that indicate that theSender.isSendable()
has become true again or the caller should checkSender.isSendable()
periodically until it becomes true once again.- Parameters:
buffer
- The buffer whose contents should be sent.- Returns:
- this
OutgoingDelivery
instance. - Throws:
IllegalStateException
- if the parentSender
link becomes inoperable due to closure or failure.
-
streamBytes
Write the given bytes as a portion of the payload of this delivery, additional bytes can be streamed until the stream complete flag is set to true on a call tostreamBytes(ProtonBuffer, boolean)
or a call towriteBytes(ProtonBuffer)
is made.The
Sender
will output as much of the buffer as possible within the constraints of both the link credit and the current capacity of the parentSession
. The caller must check that all bytes were0 written and if not they should await updates from theLink.creditStateUpdateHandler(EventHandler)
that indicate that theSender.isSendable()
has become true again or the caller should checkSender.isSendable()
periodically until it becomes true once again.This method is the same as calling
streamBytes(ProtonBuffer, boolean)
with the complete value set to false.- Parameters:
buffer
- The buffer whose contents should be sent.- Returns:
- this
OutgoingDelivery
instance. - Throws:
IllegalStateException
- if the parentSender
link becomes inoperable due to closure or failure.
-
streamBytes
Write the given bytes as a portion of the payload of this delivery, additional bytes can be streamed until the stream complete flag is set to true on a call tostreamBytes(ProtonBuffer, boolean)
and the buffer contents on that send are fully written.The
Sender
will output as much of the buffer as possible within the constraints of both the link credit and the current capacity of the parentSession
. The caller must check that all bytes were0 written and if not they should await updates from theLink.creditStateUpdateHandler(EventHandler)
that indicate that theSender.isSendable()
has become true again or the caller should checkSender.isSendable()
periodically until it becomes true once again.- Parameters:
buffer
- The buffer whose contents should be sent.complete
- When true the delivery is marked complete and no further bytes can be written.- Returns:
- this
OutgoingDelivery
instance. - Throws:
IllegalStateException
- if the parentSender
link becomes inoperable due to closure or failure.
-
isAborted
boolean isAborted()- Returns:
- true if the delivery has been aborted.
-
abort
OutgoingDelivery abort()Aborts the outgoing delivery if not already settled.- Returns:
- this delivery.
-
getState
DeliveryState getState()- Returns:
- the
DeliveryState
at the local side of this Delivery.
-
disposition
updates the state of the delivery- Parameters:
state
- the new delivery state- Returns:
- this
OutgoingDelivery
instance.
-
disposition
Update the delivery with the given disposition if not locally settled and optionally settles the delivery if not already settled.The action taken by this method depends on the state of the
OutgoingDelivery
at the time it is called.If there has yet to be any writes from this delivery the delivery state and settlement value is cached and applied to the first (or only) write of payload from this delivery. If however a write has already been performed than this method result in a
Disposition
frame being sent to the remote with the given delivery state and settlement value. Once the delivery is marked as settled any future call to this method will do nothing if the requested disposition and settlement is the same however if a new state is applied which cannot be conveyed due to having already locally settling theOutgoingDelivery
than anIllegalStateException
is thrown to indicate that request is not valid.- Parameters:
state
- the new delivery statesettle
- if true the delivery is settled.- Returns:
- this
OutgoingDelivery
instance.
-
isSettled
boolean isSettled()- Returns:
- true if the delivery has been settled locally.
-
settle
OutgoingDelivery settle()Settles this delivery if not already settled. Once settled locally no further updates to the delivery state can be applied. If called prior to the first write of payload bytes the settlement state is cached and transmitted within the firstTransfer
frame of thisOutgoingDelivery
.- Returns:
- this
OutgoingDelivery
instance.
-
isRemotelySettled
boolean isRemotelySettled()- Returns:
- true if the delivery has been settled by the remote.
-
getRemoteState
DeliveryState getRemoteState()- Returns:
- the
DeliveryState
at the remote side of this Delivery.
-
getTransferCount
int getTransferCount()Returns the total number of transfer frames that have occurred for the givenOutgoingDelivery
. If theOutgoingDelivery
has yet to have any of its write methods called this value will read zero. Aborting a transfer after anyTransfer
frames have been written will not result in an addition recordedTransfer
write.- Returns:
- the number of
Transfer
frames that thisOutgoingDelivery
has initiated.
-
deliveryStateUpdatedHandler
Handler for updates to the remote state of outgoing deliveries that have begun transferring frames.Remote state updates for an
OutgoingDelivery
can happen when the remote settles a completeOutgoingDelivery
or otherwise modifies the delivery outcome and the user needs to act on those changes such as a spontaneous update to theDeliveryState
. If the initialTransfer
of an outgoing delivery already indicates settlement then this handler will never be called.- Parameters:
handler
- The handler that will be invoked when a new remote state update for anOutgoingDelivery
arrives on this link.- Returns:
- this
OutgoingDelivery
instance.
-