Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update key documentation for Matter.framework storage. #34359

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/darwin/Framework/CHIP/MTRDemuxingStorage.mm
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ static bool IsMemoryOnlyGlobalKey(NSString * key)

// We do not expect to see the "g/a/*" keys for attribute values.

// We do not expect to see the "g/sa/*" keys for attribute values.

// We do not expect to see the "g/bt" and "g/bt/*" keys for the binding
// table.

Expand All @@ -162,6 +164,9 @@ static bool IsMemoryOnlyGlobalKey(NSString * key)
// We do not expect to see the "g/icd/cic" key; that's only used for an ICD
// that sends check-in messages.

// We do not expect to see the "g/icdfl" key; that's only used by
// DefaultICDClientStorage, which Matter.framework does not use.

return false;
}

Expand Down Expand Up @@ -215,6 +220,9 @@ static bool IsMemoryOnlyIndexSpecificKey(NSString * key)

// We do not expect to see the "e/*" scenes keys.

// We do not epect to see the "icdc" or "icdk" keys, since those are only
// used by DefaultICDClientStorage, which Matter.framework does not use.

return false;
}

Expand Down
Loading