Class ClientNoOpStreamTracker
java.lang.Object
org.apache.qpid.protonj2.client.impl.ClientNoOpStreamTracker
- All Implemented Interfaces:
StreamTracker
A dummy Tracker instance that always indicates remote settlement and
acceptance for
StreamSender
instances.-
Method Summary
Modifier and TypeMethodDescriptionWaits if necessary for the remote to settle the sent delivery with anAccepted
disposition unless it has either already been settled and accepted or the original delivery was sent settled in which case the remote will not send aDisposition
back.awaitAccepted
(long timeout, TimeUnit unit) Waits if necessary for the remote to settle the sent delivery with anAccepted
disposition unless it has either already been settled and accepted or the original delivery was sent settled in which case the remote will not send aDisposition
back.Waits if necessary for the remote to settle the sent delivery unless it has either already been settled or the original delivery was sent settled in which case the remote will not send aDisposition
back.awaitSettlement
(long timeout, TimeUnit unit) Waits if necessary for the remote to settle the sent delivery unless it has either already been settled or the original delivery was sent settled in which case the remote will not send aDisposition
back.disposition
(DeliveryState state, boolean settle) Updates the DeliveryState, and optionally settle the delivery as well.boolean
Gets whether the delivery was settled by the remote peer yet.Gets the current remote state for the tracked delivery.sender()
settle()
Settles the delivery locally, if notauto-settling
.boolean
settled()
Returns a future that can be used to wait for the remote to acknowledge receipt of a sent message by settling it.state()
Gets the current local state for the tracked delivery.
-
Method Details
-
sender
- Specified by:
sender
in interfaceStreamTracker
- Returns:
- the
StreamSender
that was used to send the delivery that is being tracked.
-
settle
Description copied from interface:StreamTracker
Settles the delivery locally, if notauto-settling
.- Specified by:
settle
in interfaceStreamTracker
- Returns:
- this
Tracker
instance. - Throws:
ClientException
- if an error occurs while performing the settlement.
-
disposition
Description copied from interface:StreamTracker
Updates the DeliveryState, and optionally settle the delivery as well.- Specified by:
disposition
in interfaceStreamTracker
- Parameters:
state
- the delivery state to applysettle
- whether toStreamTracker.settle()
the delivery at the same time- Returns:
- this
Tracker
instance. - Throws:
ClientException
- if an error occurs while applying the given disposition
-
awaitSettlement
Description copied from interface:StreamTracker
Waits if necessary for the remote to settle the sent delivery unless it has either already been settled or the original delivery was sent settled in which case the remote will not send aDisposition
back.- Specified by:
awaitSettlement
in interfaceStreamTracker
- Returns:
- this
Tracker
instance. - Throws:
ClientException
- if an error occurs while awaiting the remote settlement.
-
awaitSettlement
Description copied from interface:StreamTracker
Waits if necessary for the remote to settle the sent delivery unless it has either already been settled or the original delivery was sent settled in which case the remote will not send aDisposition
back.- Specified by:
awaitSettlement
in interfaceStreamTracker
- Parameters:
timeout
- the maximum time to wait for the remote to settle.unit
- the time unit of the timeout argument.- Returns:
- this
Tracker
instance. - Throws:
ClientException
- if an error occurs while awaiting the remote settlement.
-
settled
public boolean settled()- Specified by:
settled
in interfaceStreamTracker
- Returns:
- true if the sent message has been locally settled.
-
state
Description copied from interface:StreamTracker
Gets the current local state for the tracked delivery.- Specified by:
state
in interfaceStreamTracker
- Returns:
- the delivery state
-
remoteState
Description copied from interface:StreamTracker
Gets the current remote state for the tracked delivery.- Specified by:
remoteState
in interfaceStreamTracker
- Returns:
- the remote
DeliveryState
once a value is received from the remote.
-
remoteSettled
public boolean remoteSettled()Description copied from interface:StreamTracker
Gets whether the delivery was settled by the remote peer yet.- Specified by:
remoteSettled
in interfaceStreamTracker
- Returns:
- whether the delivery is remotely settled
-
settlementFuture
Description copied from interface:StreamTracker
Returns a future that can be used to wait for the remote to acknowledge receipt of a sent message by settling it.- Specified by:
settlementFuture
in interfaceStreamTracker
- Returns:
- a
Future
that can be used to wait on remote settlement.
-
awaitAccepted
Description copied from interface:StreamTracker
Waits if necessary for the remote to settle the sent delivery with anAccepted
disposition unless it has either already been settled and accepted or the original delivery was sent settled in which case the remote will not send aDisposition
back.- Specified by:
awaitAccepted
in interfaceStreamTracker
- Returns:
- this
Tracker
instance. - Throws:
ClientDeliveryStateException
- if the remote sends a disposition other than Accepted.ClientException
- if an error occurs while awaiting the remote settlement.
-
awaitAccepted
Description copied from interface:StreamTracker
Waits if necessary for the remote to settle the sent delivery with anAccepted
disposition unless it has either already been settled and accepted or the original delivery was sent settled in which case the remote will not send aDisposition
back.- Specified by:
awaitAccepted
in interfaceStreamTracker
- Parameters:
timeout
- the maximum time to wait for the remote to settle.unit
- the time unit of the timeout argument.- Returns:
- this
Tracker
instance. - Throws:
ClientDeliveryStateException
- if the remote sends a disposition other than Accepted.ClientException
- if an error occurs while awaiting the remote settlement.
-