@@ -30,8 +30,9 @@ void MatterReportingAttributeChangeCallback(EndpointId endpoint, ClusterId clust
30
30
// applications notifying about changes from their end.
31
31
assertChipStackLockedByCurrentThread ();
32
32
33
- InteractionModelEngine::GetInstance ()->GetDataModelProvider ()->Temporary_ReportAttributeChanged (
34
- AttributePathParams (endpoint, clusterId, attributeId));
33
+ DataModel::ProviderChangeListener & changeListener =
34
+ InteractionModelEngine::GetInstance ()->GetDataModelProvider ()->GetAttributeChangeReporter ();
35
+ changeListener.MarkDirty (AttributePathParams (endpoint, clusterId, attributeId));
35
36
}
36
37
37
38
void MatterReportingAttributeChangeCallback (const ConcreteAttributePath & aPath)
@@ -40,8 +41,9 @@ void MatterReportingAttributeChangeCallback(const ConcreteAttributePath & aPath)
40
41
// applications notifying about changes from their end.
41
42
assertChipStackLockedByCurrentThread ();
42
43
43
- InteractionModelEngine::GetInstance ()->GetDataModelProvider ()->Temporary_ReportAttributeChanged (
44
- AttributePathParams (aPath.mEndpointId , aPath.mClusterId , aPath.mAttributeId ));
44
+ DataModel::ProviderChangeListener & changeListener =
45
+ InteractionModelEngine::GetInstance ()->GetDataModelProvider ()->GetAttributeChangeReporter ();
46
+ changeListener.MarkDirty (AttributePathParams (aPath.mEndpointId , aPath.mClusterId , aPath.mAttributeId ));
45
47
}
46
48
47
49
void MatterReportingAttributeChangeCallback (EndpointId endpoint)
@@ -50,5 +52,7 @@ void MatterReportingAttributeChangeCallback(EndpointId endpoint)
50
52
// applications notifying about changes from their end.
51
53
assertChipStackLockedByCurrentThread ();
52
54
53
- InteractionModelEngine::GetInstance ()->GetDataModelProvider ()->Temporary_ReportAttributeChanged (AttributePathParams (endpoint));
55
+ DataModel::ProviderChangeListener & changeListener =
56
+ InteractionModelEngine::GetInstance ()->GetDataModelProvider ()->GetAttributeChangeReporter ();
57
+ changeListener.MarkDirty (AttributePathParams (endpoint));
54
58
}
0 commit comments