jonnxu commented on a change in pull request #154: [Feature] Support producer
transaction message
URL:
https://github.com/apache/rocketmq-client-cpp/pull/154#discussion_r305579786
##########
File path: src/producer/SendResult.cpp
##########
@@ -74,5 +75,17 @@ int64 SendResult::getQueueOffset() const {
return m_queueOffset;
}
+std::string SendResult::toString() const {
+ stringstream ss;
+ ss << "SendResult: ";
+ ss << "sendStatus:" << m_sendStatus;
+ ss << ",msgId:" << m_msgId;
Review comment:
it doesn't matter
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services