erobot commented on code in PR #185:
URL: https://github.com/apache/pulsar-client-cpp/pull/185#discussion_r1096988882
##########
lib/AckGroupingTrackerEnabled.h:
##########
@@ -71,6 +71,15 @@ class AckGroupingTrackerEnabled : public AckGroupingTracker {
//! Method for scheduling grouping timer.
void scheduleTimer();
+ //! State
+ enum State
+ {
+ NotStarted,
+ Ready,
+ Closed,
+ };
+ std::atomic<State> state_;
Review Comment:
Updated to isClosed style.
--
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]