We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04251f1 commit 15b4592Copy full SHA for 15b4592
src/app/util/MatterCallbacks.h
@@ -60,8 +60,12 @@ class DataModelCallbacks
60
return CHIP_NO_ERROR;
61
}
62
63
- /// This callback is called once the message has been determined to be a command, but
64
- /// after it being dispatched to the receiver.
+ /// This callback is called once for every command dispatch, after the dispatch is actually
+ /// done towards the receiver.
65
+ ///
66
+ /// This method is called once for every CommandDataIB (i.e. it may be called several times
67
+ /// in the case of batch invoke, where a single `InvokeRequestMessage` may contain several
68
+ /// CommandDataIB entries).
69
virtual void PostCommandReceived(const chip::app::ConcreteCommandPath & commandPath,
70
const chip::Access::SubjectDescriptor & subjectDescriptor)
71
{}
0 commit comments