You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Notifies delegate when the device attribute cache has been primed with initial configuration data of the device
408
+
*
409
+
* This is called when the MTRDevice object goes from not knowing the device to having cached the first attribute reports that include basic mandatory information, e.g. Descriptor clusters.
410
+
*
411
+
* The intention is that after this is called, the client should be able to call read for mandatory attributes and likely expect non-nil values.
// If cache is set from storage and is primed with initial configuration data, then assume the client had beeen informed in the past, and mark that the callback has been called
2011
+
if ([self_isCachePrimedWithInitialConfigurationData]) {
2012
+
_delegateDeviceCachePrimedCalled = YES;
2013
+
}
2014
+
2015
+
os_unfair_lock_unlock(&self->_lock);
2007
2016
}
2008
2017
2009
2018
// If value is non-nil, associate with expectedValueID
@@ -2181,25 +2190,19 @@ - (void)_removeExpectedValueForAttributePath:(MTRAttributePath *)attributePath e
2181
2190
}
2182
2191
2183
2192
// This method checks if there is a need to inform delegate that the attribute cache has been "primed"
XCTestExpectation * resubGotReportsExpectation = [self expectationWithDescription:@"Attribute and Event reports have been received for resubscription"];
2881
-
XCTestExpectation * gotDeviceCachePrimedAgain = [self expectationWithDescription:@"Device cache primed upon load from persistence"];
0 commit comments