-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[doc] Add setter for reader subscription name #10027
Conversation
@jennifer88huang thanks for your contribution. Need to add similar contents for C++ client as well? |
site2/docs/client-libraries-java.md
Outdated
@@ -675,6 +676,7 @@ String|`topicName`|Topic name. |None | |||
int|`receiverQueueSize`|Size of a consumer's receiver queue.<br/><br/>For example, the number of messages that can be accumulated by a consumer before an application calls `Receive`.<br/><br/>A value higher than the default value increases consumer throughput, though at the expense of more memory utilization.|1000 | |||
ReaderListener<T>|`readerListener`|A listener that is called for message received.|None | |||
String|`readerName`|Read name.|null | |||
String| `subscriptionName`|Subscription name|None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default value is not None
When there is a single topic, the default subscription name is: "reader-" + 10-digit UUID
When there are multiple topics, the default subscription name is: "multiTopicsReader-" + 10-digit UUID
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you for your comment. Updated, ptal again.
Currently, we do not have any content related to Reader for C++ client. We can add it when improving C++ client as a whole. You can add a follow-up issue for it. |
Master Issue: #8787
Related PR: #8801
Modifications
Add doc content on adding setter for reader subscription name.