@@ -52,7 +52,7 @@ class ThermostatAtomicWriteManager : public AtomicWriteManager
52
52
* @param attributeId Optional attribute filter
53
53
* @param endpoint The endpoint to check atomic write state
54
54
* @return true if there is an open atomic write
55
- * @return false if there is not at open atomic write
55
+ * @return false if there is no open atomic write
56
56
*/
57
57
bool InWrite (const std::optional<AttributeId> attributeId, EndpointId endpoint) override ;
58
58
@@ -64,7 +64,7 @@ class ThermostatAtomicWriteManager : public AtomicWriteManager
64
64
* @param subjectDescriptor The subject descriptor to check against
65
65
* @param endpoint The endpoint to check atomic write state
66
66
* @return true if there is an open atomic write
67
- * @return false if there is not an open atomic write
67
+ * @return false if there is no open atomic write
68
68
*/
69
69
bool InWrite (const std::optional<AttributeId> attributeId, const Access::SubjectDescriptor & subjectDescriptor,
70
70
EndpointId endpoint) override ;
@@ -76,8 +76,8 @@ class ThermostatAtomicWriteManager : public AtomicWriteManager
76
76
* @param attributeId
77
77
* @param commandObj
78
78
* @param endpoint
79
- * @return true
80
- * @return false
79
+ * @return true if there is an open atomic write
80
+ * @return false if there is no open atomic write
81
81
*/
82
82
bool InWrite (const std::optional<AttributeId> attributeId, CommandHandler * commandObj, EndpointId endpoint) override ;
83
83
@@ -89,7 +89,7 @@ class ThermostatAtomicWriteManager : public AtomicWriteManager
89
89
* @param commandObj The command being invoked
90
90
* @param endpoint The endpoint for the atomic write
91
91
* @return true if there is an open atomic write
92
- * @return false if there is not an open atomic write
92
+ * @return false if there is no open atomic write
93
93
*/
94
94
bool InWrite (const DataModel::DecodableList<AttributeId>::Iterator attributeIds, CommandHandler * commandObj,
95
95
EndpointId endpoint) override ;
@@ -100,27 +100,27 @@ class ThermostatAtomicWriteManager : public AtomicWriteManager
100
100
* @param commandObj The AtomicRequest command
101
101
* @param commandPath The path for the command
102
102
* @param commandData The payload of the command
103
- * @return true if the atomic write was opened
104
- * @return false if the atomic write was not opened
103
+ * @return true if the atomic write was opened successfully
104
+ * @return false if the request to open atomic write failed
105
105
*/
106
106
bool BeginWrite (chip::app::CommandHandler * commandObj, const ConcreteCommandPath & commandPath,
107
107
const Commands::AtomicRequest::DecodableType & commandData) override ;
108
108
109
109
/* *
110
- * @brief Attempt to commit an atomic write; returns true if the server is able to commit or failed trying, false if it was
111
- * unable to find a matching atomic write
110
+ * @brief Attempt to commit an atomic write; returns true if the server is able to either commit or rollback successfully,
111
+ * returns false otherwise
112
112
*
113
113
* @param commandObj The AtomicRequest command
114
114
* @param commandPath The path for the command
115
115
* @param commandData The payload of the command
116
- * @return true if the atomic write was committed or rolled back
116
+ * @return true if the atomic write was either committed or rolled back
117
117
* @return false if the atomic write was not found
118
118
*/
119
119
bool CommitWrite (chip::app::CommandHandler * commandObj, const ConcreteCommandPath & commandPath,
120
120
const Commands::AtomicRequest::DecodableType & commandData) override ;
121
121
122
122
/* *
123
- * @brief Attempt to roll back an atomic write; returns true if the server is able to commit or failed trying , false if it was
123
+ * @brief Attempt to roll back an atomic write; returns true if the server is able to rollback successfully , false if it was
124
124
* unable to find a matching atomic write
125
125
*
126
126
* @param commandObj The AtomicRequest command
0 commit comments