Class ClientStreamSender.ClientOutgoingEnvelope
java.lang.Object
org.apache.qpid.protonj2.client.impl.ClientStreamSender.ClientOutgoingEnvelope
- All Implemented Interfaces:
org.apache.qpid.protonj2.client.impl.ClientTransactionContext.Sendable
- Enclosing class:
- ClientStreamSender
public static final class ClientStreamSender.ClientOutgoingEnvelope
extends Object
implements org.apache.qpid.protonj2.client.impl.ClientTransactionContext.Sendable
-
Constructor Summary
ConstructorDescriptionClientOutgoingEnvelope
(ClientStreamSender sender, OutgoingDelivery delivery, int messageFormat, ProtonBuffer payload, boolean complete, ClientFuture<StreamTracker> request) Create a new In-flight Send instance that is a continuation on an existing delivery. -
Method Summary
Modifier and TypeMethodDescriptionabort()
boolean
aborted()
delivery()
void
discard()
If the context that is overseeing this send is in a failed state it can request that the send be discarded without notification to the sender that it failed, this occurs most often in an in-doubt transaction context where all work will be dropped once the user attempt to retire the transaction.failed
(ClientException exception) payload()
void
send
(DeliveryState state, boolean settled) Performs the actual send of delivery data which might be enlisted in a transaction or may simply be a passed through based on the context and its state.Future<?>
void
sendTimeout
(Future<?> sendTimeout) Sets theFuture
which should be used when a send cannot be immediately performed.
-
Constructor Details
-
ClientOutgoingEnvelope
public ClientOutgoingEnvelope(ClientStreamSender sender, OutgoingDelivery delivery, int messageFormat, ProtonBuffer payload, boolean complete, ClientFuture<StreamTracker> request) Create a new In-flight Send instance that is a continuation on an existing delivery.- Parameters:
sender
- TheClientSender
instance that is attempting to send this encoded message.messageFormat
- The message format code to assign the send if this is the first delivery.delivery
- TheOutgoingDelivery
context this envelope will be added to.payload
- The payload that comprises this portion of the send.complete
- Indicates if the encoded payload represents the complete transfer or if more is coming.request
- The requesting operation that initiated this send.
-
-
Method Details
-
sendTimeout
- Returns:
- the
Future
used to determine when the send should fail if no credit available to write.
-
sendTimeout
Sets theFuture
which should be used when a send cannot be immediately performed.- Parameters:
sendTimeout
- TheFuture
that will fail the send if not cancelled once it has been performed.
-
payload
-
delivery
-
abort
-
aborted
public boolean aborted() -
discard
public void discard()Description copied from interface:org.apache.qpid.protonj2.client.impl.ClientTransactionContext.Sendable
If the context that is overseeing this send is in a failed state it can request that the send be discarded without notification to the sender that it failed, this occurs most often in an in-doubt transaction context where all work will be dropped once the user attempt to retire the transaction.- Specified by:
discard
in interfaceorg.apache.qpid.protonj2.client.impl.ClientTransactionContext.Sendable
-
succeeded
-
failed
-
send
Description copied from interface:org.apache.qpid.protonj2.client.impl.ClientTransactionContext.Sendable
Performs the actual send of delivery data which might be enlisted in a transaction or may simply be a passed through based on the context and its state. The sender need not be aware of this though as the context will provide a delivery state that is appropriate for this send which would encapsulate any sender provided delivery state.- Specified by:
send
in interfaceorg.apache.qpid.protonj2.client.impl.ClientTransactionContext.Sendable
- Parameters:
state
- Sender provided delivery state or context decorated version.settled
- If the send should be sent settled or not.
-
createSendTimedOutException
-