Class ClientReceiver
- All Implemented Interfaces:
- AutoCloseable,- Link<Receiver>,- Receiver
Receiver implementation.- 
Field SummaryFields inherited from class org.apache.qpid.protonj2.client.impl.ClientReceiverLinkTypedrainingFuture, drainingTimeout, protonReceiverFields inherited from class org.apache.qpid.protonj2.client.impl.ClientLinkTypeclosed, CLOSED_UPDATER, closeFuture, executor, failureCause, linkId, linkRemotelyClosedHandler, openFuture, remoteSource, remoteTarget, session
- 
Method SummaryModifier and TypeMethodDescriptionaddCredit(int credits) Adds credit to theReceiverlink for use when there receiver has not been configured with a credit window.drain()Requests the remote to drain previously granted credit for thisReceiverlink.protected voidhandleDeliveryRead(IncomingDelivery delivery) protected voidlongReturns the number of Deliveries that are currently held in theReceiverdelivery queue.receive()Blocking receive method that waits forever for the remote to provide aDeliveryfor consumption.Blocking receive method that waits the given time interval for the remote to provide aDeliveryfor consumption.protected voidprotected voidprotected Receiverself()Non-blocking receive method that either returns a message is one is immediately available or returns null if none is currently at hand.Methods inherited from class org.apache.qpid.protonj2.client.impl.ClientReceiverLinkTypehandleDeliveryAborted, handleDeliveryStateRemotelyUpdated, handleReceiverCreditUpdated, linkSpecificCleanupHandler, linkSpecificLocalOpenHandler, linkSpecificRemoteCloseHandler, linkSpecificRemoteOpenHandler, protonLinkMethods inherited from class org.apache.qpid.protonj2.client.impl.ClientLinkTypeaddress, checkClosedOrFailed, client, close, close, closeAsync, closeAsync, connection, desiredCapabilities, detach, detach, detachAsync, detachAsync, handleEngineShutdown, handleLocalCloseOrDetach, handleLocalOpen, handleParentEndpointClosed, handleRemoteCloseOrDetach, handleRemoteOpen, immediateLinkShutdown, notClosedOrFailed, notClosedOrFailed, offeredCapabilities, openFuture, properties, session, source, target, waitForOpenToCompleteMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.qpid.protonj2.client.Linkaddress, client, close, close, closeAsync, closeAsync, connection, desiredCapabilities, detach, detach, detachAsync, detachAsync, offeredCapabilities, openFuture, properties, session, source, target
- 
Method Details- 
receiveDescription copied from interface:ReceiverBlocking receive method that waits forever for the remote to provide aDeliveryfor consumption.Receive calls will only grant credit on their own if a credit window is configured in the ReceiverOptionswhich is done by default. If the client application has configured no credit window than this method will not grant any credit when it enters the wait for new incoming messages.- Specified by:
- receivein interface- Receiver
- Returns:
- a new Deliveryreceived from the remote.
- Throws:
- ClientException- if the- Receiveror its parent is closed when the call to receive is made.
 
- 
receiveDescription copied from interface:ReceiverBlocking receive method that waits the given time interval for the remote to provide aDeliveryfor consumption. The amount of time this method blocks is based on the timeout value. If the timeout is less than zero then it blocks until a Delivery is received. If the timeout is equal to zero then it will not block and simply return aDeliveryif one is available locally. If the timeout value is greater than zero then it blocks up to timeout amount of time.Receive calls will only grant credit on their own if a credit window is configured in the ReceiverOptionswhich is done by default. If the client application has not configured a credit window or granted credit manually this method will not automatically grant any credit when it enters the wait for a new incomingDelivery.- Specified by:
- receivein interface- Receiver
- Parameters:
- timeout- The timeout value used to control how long the receive method waits for a new- Delivery.
- units- The unit of time that the given timeout represents.
- Returns:
- a new Deliveryreceived from the remote.
- Throws:
- ClientException- if the- Receiveror its parent is closed when the call to receive is made.
 
- 
tryReceiveDescription copied from interface:ReceiverNon-blocking receive method that either returns a message is one is immediately available or returns null if none is currently at hand.- Specified by:
- tryReceivein interface- Receiver
- Returns:
- a new Deliveryreceived from the remote or null if no pending deliveries are available.
- Throws:
- ClientException- if the- Receiveror its parent is closed when the call to try to receive is made.
 
- 
queuedDeliveriespublic long queuedDeliveries()Description copied from interface:ReceiverReturns the number of Deliveries that are currently held in theReceiverdelivery queue. This number is likely to change immediately following the call as more deliveries arrive but can be used to determine if any pendingDeliverywork is ready.- Specified by:
- queuedDeliveriesin interface- Receiver
- Returns:
- the number of deliveries that are currently buffered locally.
 
- 
addCreditDescription copied from interface:ReceiverAdds credit to theReceiverlink for use when there receiver has not been configured with a credit window. When credit window is configured credit replenishment is automatic and calling this method will result in an exception indicating that the operation is invalid.If the Receiveris draining and this method is called an exception will be thrown to indicate that credit cannot be replenished until the remote has drained the existing link credit.
- 
drainDescription copied from interface:ReceiverRequests the remote to drain previously granted credit for thisReceiverlink.- Specified by:
- drainin interface- Receiver
- Returns:
- a Futurethat will be completed when the remote drains thisReceiverlink.
- Throws:
- ClientException- if an error occurs while attempting to drain the link credit.
 
- 
self- Specified by:
- selfin class- ClientLinkType<Receiver,- Receiver> 
 
- 
handleDeliveryRead- Specified by:
- handleDeliveryReadin class- ClientReceiverLinkType<Receiver>
 
- 
replenishCreditIfNeededprotected void replenishCreditIfNeeded()- Specified by:
- replenishCreditIfNeededin class- ClientReceiverLinkType<Receiver>
 
- 
linkSpecificLocalCloseHandlerprotected void linkSpecificLocalCloseHandler()- Overrides:
- linkSpecificLocalCloseHandlerin class- ClientReceiverLinkType<Receiver>
 
- 
recreateLinkForReconnectprotected void recreateLinkForReconnect()- Specified by:
- recreateLinkForReconnectin class- ClientLinkType<Receiver,- Receiver> 
 
 
-