congbobo184 opened a new pull request, #17740: URL: https://github.com/apache/pulsar/pull/17740
### Motivation fix doc for consumer receive().getValue API ### Modifications ``` Message<User> message = consumer.receive(); User user = message.getValue(); ``` this is the right way but doc is ``` User use = consumer.receive(); ``` so change to ``` User user = consumer.receive().getValue(); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
