Uses of Interface
org.apache.qpid.protonj2.client.Delivery
-
Packages that use Delivery Package Description org.apache.qpid.protonj2.client org.apache.qpid.protonj2.client.impl -
-
Uses of Delivery in org.apache.qpid.protonj2.client
Subinterfaces of Delivery in org.apache.qpid.protonj2.client Modifier and Type Interface Description interface
StreamDelivery
A specializedDelivery
type that is returned from theStreamReceiver
which can be used to read incoming large messages that are streamed via multiple incoming AMQPTransfer
frames.Methods in org.apache.qpid.protonj2.client that return Delivery Modifier and Type Method Description Delivery
Delivery. accept()
Accepts and settles the delivery.Delivery
Delivery. disposition(DeliveryState state, boolean settle)
Updates the DeliveryState, and optionally settle the delivery as well.Delivery
Delivery. modified(boolean deliveryFailed, boolean undeliverableHere)
Modifies and settles the delivery.Delivery
Receiver. receive()
Blocking receive method that waits forever for the remote to provide aDelivery
for consumption.Delivery
Receiver. receive(long timeout, java.util.concurrent.TimeUnit unit)
Blocking receive method that waits the given time interval for the remote to provide aDelivery
for consumption.Delivery
Delivery. reject(java.lang.String condition, java.lang.String description)
Rejects and settles the delivery, sending supplied error information along with the rejection.Delivery
Delivery. release()
Releases and settles the delivery.Delivery
Delivery. settle()
Settles the delivery locally.Delivery
Receiver. tryReceive()
Non-blocking receive method that either returns a message is one is immediately available or returns null if none is currently at hand. -
Uses of Delivery in org.apache.qpid.protonj2.client.impl
Classes in org.apache.qpid.protonj2.client.impl that implement Delivery Modifier and Type Class Description class
ClientDelivery
Client inbound delivery object.class
ClientStreamDelivery
AStreamDelivery
implementation that provides the mechanics of reading message types from an incoming split framed transfer.Methods in org.apache.qpid.protonj2.client.impl that return Delivery Modifier and Type Method Description Delivery
ClientDelivery. accept()
Delivery
ClientDelivery. disposition(DeliveryState state, boolean settle)
Delivery
ClientDelivery. modified(boolean deliveryFailed, boolean undeliverableHere)
Delivery
ClientReceiver. receive()
Delivery
ClientReceiver. receive(long timeout, java.util.concurrent.TimeUnit units)
Delivery
ClientDelivery. reject(java.lang.String condition, java.lang.String description)
Delivery
ClientDelivery. release()
Delivery
ClientDelivery. settle()
Delivery
ClientReceiver. tryReceive()
-