Uses of Interface
org.apache.qpid.protonj2.client.DeliveryState
-
Packages that use DeliveryState Package Description org.apache.qpid.protonj2.client org.apache.qpid.protonj2.client.exceptions org.apache.qpid.protonj2.client.impl -
-
Uses of DeliveryState in org.apache.qpid.protonj2.client
Methods in org.apache.qpid.protonj2.client that return DeliveryState Modifier and Type Method Description static DeliveryState
DeliveryState. accepted()
DeliveryState
Source. defaultOutcome()
DeliveryState
SourceOptions. defaultOutcome()
static DeliveryState
DeliveryState. modified(boolean failed, boolean undeliverable)
Create a new Modified outcome with the given failure state.static DeliveryState
DeliveryState. modified(boolean failed, boolean undeliverable, Map<String,Object> annotations)
Create a new Modified outcome with the given failure state.static DeliveryState
DeliveryState. rejected(String condition, String description)
Create a new Rejected outcome with the given condition and description.static DeliveryState
DeliveryState. rejected(String condition, String description, Map<String,Object> info)
Create a new Rejected outcome with the given condition and description.static DeliveryState
DeliveryState. released()
DeliveryState
Delivery. remoteState()
Gets the current remote state for the delivery.DeliveryState
StreamDelivery. remoteState()
Gets the current remote state for the delivery.DeliveryState
StreamTracker. remoteState()
Gets the current remote state for the tracked delivery.DeliveryState
Tracker. remoteState()
Gets the current remote state for the tracked delivery.DeliveryState
Delivery. state()
Gets the current local state for the delivery.DeliveryState
StreamDelivery. state()
Gets the current local state for the delivery.DeliveryState
StreamTracker. state()
Gets the current local state for the tracked delivery.DeliveryState
Tracker. state()
Gets the current local state for the tracked delivery.Methods in org.apache.qpid.protonj2.client with parameters of type DeliveryState Modifier and Type Method Description SourceOptions
SourceOptions. defaultOutcome(DeliveryState defaultOutcome)
Delivery
Delivery. disposition(DeliveryState state, boolean settle)
Updates the DeliveryState, and optionally settle the delivery as well.StreamDelivery
StreamDelivery. disposition(DeliveryState state, boolean settle)
Updates the DeliveryState, and optionally settle the delivery as well.StreamTracker
StreamTracker. disposition(DeliveryState state, boolean settle)
Updates the DeliveryState, and optionally settle the delivery as well.Tracker
Tracker. disposition(DeliveryState state, boolean settle)
Updates the DeliveryState, and optionally settle the delivery as well. -
Uses of DeliveryState in org.apache.qpid.protonj2.client.exceptions
Methods in org.apache.qpid.protonj2.client.exceptions that return DeliveryState Modifier and Type Method Description DeliveryState
ClientDeliveryStateException. getOutcome()
Constructors in org.apache.qpid.protonj2.client.exceptions with parameters of type DeliveryState Constructor Description ClientDeliveryStateException(String message, Throwable cause, DeliveryState outcome)
Create a new instance of the client delivery state error.ClientDeliveryStateException(String message, DeliveryState outcome)
Create a new instance of the client delivery state error. -
Uses of DeliveryState in org.apache.qpid.protonj2.client.impl
Classes in org.apache.qpid.protonj2.client.impl that implement DeliveryState Modifier and Type Class Description class
ClientDeliveryState
Client internal implementation of a DeliveryState type.static class
ClientDeliveryState.ClientAccepted
Client definedAccepted
delivery state definitionstatic class
ClientDeliveryState.ClientModified
Client definedModified
delivery state definitionstatic class
ClientDeliveryState.ClientRejected
Client definedRejected
delivery state definitionstatic class
ClientDeliveryState.ClientReleased
Client definedReleased
delivery state definitionstatic class
ClientDeliveryState.ClientTransactional
Client definedTransactionalState
delivery state definitionFields in org.apache.qpid.protonj2.client.impl with type parameters of type DeliveryState Modifier and Type Field Description protected static AtomicReferenceFieldUpdater<ClientTrackable,DeliveryState>
ClientTrackable. REMOTEL_DELIVERY_STATE_UPDATER
Methods in org.apache.qpid.protonj2.client.impl that return DeliveryState Modifier and Type Method Description DeliveryState
ClientDeliverable. remoteState()
DeliveryState
ClientNoOpStreamTracker. remoteState()
DeliveryState
ClientNoOpTracker. remoteState()
DeliveryState
ClientTrackable. remoteState()
DeliveryState
ClientDeliverable. state()
DeliveryState
ClientNoOpStreamTracker. state()
DeliveryState
ClientNoOpTracker. state()
DeliveryState
ClientTrackable. state()
Methods in org.apache.qpid.protonj2.client.impl with parameters of type DeliveryState Modifier and Type Method Description DeliveryType
ClientDeliverable. disposition(DeliveryState state, boolean settle)
StreamTracker
ClientNoOpStreamTracker. disposition(DeliveryState state, boolean settle)
Tracker
ClientNoOpTracker. disposition(DeliveryState state, boolean settle)
TrackerType
ClientTrackable. disposition(DeliveryState state, boolean settle)
-