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

Add two missing availability annotations for MTRSubscribeParams properties. #24567

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
4 changes: 2 additions & 2 deletions src/darwin/Framework/CHIP/MTRCluster.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ NS_ASSUME_NONNULL_BEGIN
*
* If NO, the subscribe will allow any previous subscriptions to remain.
*/
@property (nonatomic, assign, getter=shouldReplaceExistingSubscriptions) BOOL replaceExistingSubscriptions;
@property (nonatomic, assign, getter=shouldReplaceExistingSubscriptions) BOOL replaceExistingSubscriptions MTR_NEWLY_AVAILABLE;

/**
* Whether the subscription should automatically try to re-establish if it
Expand All @@ -127,7 +127,7 @@ NS_ASSUME_NONNULL_BEGIN
* called again.
*
*/
@property (nonatomic, assign, getter=shouldResubscribeIfLost) BOOL resubscribeIfLost;
@property (nonatomic, assign, getter=shouldResubscribeIfLost) BOOL resubscribeIfLost MTR_NEWLY_AVAILABLE;

/**
* The minimum time, in seconds, between consecutive reports a server will send
Expand Down