pivotal-jbarrett commented on code in PR #962: URL: https://github.com/apache/geode-native/pull/962#discussion_r861188302
########## cppcache/src/ClientProxyMembershipID.hpp: ########## @@ -51,26 +46,37 @@ class ClientProxyMembershipID : public DSMemberForVersionStamp { const std::chrono::seconds durableClientTimeOut = std::chrono::seconds::zero()); - // This constructor is only for testing and should not be used for any - // other purpose. See testEntriesMapForVersioning.cpp for more details + /** + * This constructor is only for testing and should not be used for any + * other purpose. See testEntriesMapForVersioning.cpp for more details + */ ClientProxyMembershipID(const uint8_t* hostAddr, uint32_t hostAddrLen, uint32_t hostPort, const char* dsname, const char* uniqueTag, uint32_t vmViewId); - // ClientProxyMembershipID(const char *durableClientId = nullptr, const - // uint32_t durableClntTimeOut = 0); + ClientProxyMembershipID(); + ~ClientProxyMembershipID() noexcept override; + static void increaseSynchCounter(); + static std::shared_ptr<Serializable> createDeserializable() { return std::make_shared<ClientProxyMembershipID>(); } - // Do an empty check on the returned value. Only use after handshake is done. + + /** + * Do an empty check on the returned value. Only use after handshake is done. + */ Review Comment: Ok, I am going to fix it. I didn't even look at the implementation previously. You are right, it is just a getter. -- 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: notifications-unsubscr...@geode.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org