-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Event Hubs] Review AMQP link lifecycle for Receiver #3176
Labels
Milestone
Comments
ramya-rao-a
added
Client
This issue points to a problem in the data-plane of the library.
Event Hubs
labels
May 23, 2019
16 tasks
Below are the break up of tasks:
|
Closing this issue as separate github issues have been created to track the individual tasks |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
As per the API proposal in #2718 (comment), we will now have a
createReceiver()
method on the Event Hub Client that returns a receiver. #3175 tracks the work to implement this change.This issue is to review the lifecycle of the underlying AMQP link
In the previous design, links never got re-used. At the end of a streaming receiver or batching receiver operation (
receive
andreceiveBatch
), the underlying AMQP link was closed. In the new designreceive
,receiveBatch
andgetEventIterator
such that I should be able to use sayreceiveBatch
and thengetEventIterator
orreceive
and the second call should start receiving messages from where the first left offThe text was updated successfully, but these errors were encountered: