-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
grpc: add docs for generic stream interfaces #7470
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #7470 +/- ##
==========================================
+ Coverage 81.56% 81.79% +0.23%
==========================================
Files 354 361 +7
Lines 27076 27825 +749
==========================================
+ Hits 22085 22760 +675
- Misses 3802 3860 +58
- Partials 1189 1205 +16
|
@purnesh42H Removed the comments for parent interfaces and pushed the changes. |
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.
LGTM
@janardhanvissa can you please update the description that it partially addresses #1894 ? Also, add RELEASE NOTES to description. See other commits for reference |
@purnesh42H Partially in the sense do I need to add comments for RouteChat() function under examples/route_guide/server/server.go file? |
@purnesh42H Please review the Release note added in the PR. |
@dfawley the documentation looks good to me. We can address the other follow up parts separately |
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.
Generally this feels a bit too verbose. Documentation shouldn't be redundant. Users reading this documentation know how to read the function signatures. They want to know what the things represent, how to use them, and what kinds of errors can occur. E.g. "can be called repeatedly" is great but "It takes a pointer ... of type Res" is obvious by reading the function signature. Please apply that feedback throughout and I will re-review (I stopped reviewing after the second interface).
@dfawley Updated the description as per the comments made. Please let me know if any updates are required for this. |
@arvindbr8 I have updated the docstring comments as per the comments addressed and pushed the changes. Please review it. |
@dfawley is this good to go? |
I will push a commit that has some edits soon, rather than going back and forth in comments. |
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.
I think this looks good now. Please review my edits first, however.
Partially addresses #1894
RELEASE NOTES: None