Skip to content

Commit c19c321

Browse files
hastynivi-apple
andauthored
Apply suggestions from code review
Co-authored-by: Nivi Sarkar <55898241+nivi-apple@users.noreply.github.com>
1 parent 6eb3031 commit c19c321

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

examples/thermostat/thermostat-common/include/atomic-write-manager.h

+11-11
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class ThermostatAtomicWriteManager : public AtomicWriteManager
5252
* @param attributeId Optional attribute filter
5353
* @param endpoint The endpoint to check atomic write state
5454
* @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
5656
*/
5757
bool InWrite(const std::optional<AttributeId> attributeId, EndpointId endpoint) override;
5858

@@ -64,7 +64,7 @@ class ThermostatAtomicWriteManager : public AtomicWriteManager
6464
* @param subjectDescriptor The subject descriptor to check against
6565
* @param endpoint The endpoint to check atomic write state
6666
* @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
6868
*/
6969
bool InWrite(const std::optional<AttributeId> attributeId, const Access::SubjectDescriptor & subjectDescriptor,
7070
EndpointId endpoint) override;
@@ -76,8 +76,8 @@ class ThermostatAtomicWriteManager : public AtomicWriteManager
7676
* @param attributeId
7777
* @param commandObj
7878
* @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
8181
*/
8282
bool InWrite(const std::optional<AttributeId> attributeId, CommandHandler * commandObj, EndpointId endpoint) override;
8383

@@ -89,7 +89,7 @@ class ThermostatAtomicWriteManager : public AtomicWriteManager
8989
* @param commandObj The command being invoked
9090
* @param endpoint The endpoint for the atomic write
9191
* @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
9393
*/
9494
bool InWrite(const DataModel::DecodableList<AttributeId>::Iterator attributeIds, CommandHandler * commandObj,
9595
EndpointId endpoint) override;
@@ -100,27 +100,27 @@ class ThermostatAtomicWriteManager : public AtomicWriteManager
100100
* @param commandObj The AtomicRequest command
101101
* @param commandPath The path for the command
102102
* @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
105105
*/
106106
bool BeginWrite(chip::app::CommandHandler * commandObj, const ConcreteCommandPath & commandPath,
107107
const Commands::AtomicRequest::DecodableType & commandData) override;
108108

109109
/**
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
112112
*
113113
* @param commandObj The AtomicRequest command
114114
* @param commandPath The path for the command
115115
* @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
117117
* @return false if the atomic write was not found
118118
*/
119119
bool CommitWrite(chip::app::CommandHandler * commandObj, const ConcreteCommandPath & commandPath,
120120
const Commands::AtomicRequest::DecodableType & commandData) override;
121121

122122
/**
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
124124
* unable to find a matching atomic write
125125
*
126126
* @param commandObj The AtomicRequest command

examples/thermostat/thermostat-common/include/thermostat-delegate-impl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace Clusters {
2727
namespace Thermostat {
2828

2929
/**
30-
* The ThermostatManager class serves as the instance delegate for storing Presets related information and providing it to the
30+
* The ThermostatDelegate class serves as the instance delegate for storing Presets related information and providing it to the
3131
* Thermostat server code. It also manages the presets attribute and provides methods to write to presets, edit presets, maintain a
3232
* pending presets list and either commit the presets when requested or discard the changes. It also provides APIs to get and set
3333
* the attribute values.

0 commit comments

Comments
 (0)