-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature flags performance improvements
- Loading branch information
Robert
committed
Dec 17, 2024
1 parent
615a965
commit 2f44b7b
Showing
27 changed files
with
897 additions
and
184 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// | ||
// BSGAtomicFeatureFlagStore.h | ||
// Bugsnag | ||
// | ||
// Created by Robert B on 16/12/2024. | ||
// Copyright © 2024 Bugsnag Inc. All rights reserved. | ||
// | ||
|
||
#import "BugsnagInternals.h" | ||
#import "BSGDefines.h" | ||
#import "BSGFeatureFlagStore.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
|
||
BSG_OBJC_DIRECT_MEMBERS | ||
@interface BSGAtomicFeatureFlagStore () | ||
|
||
+ (instancetype)store; | ||
|
||
@end | ||
|
||
#pragma mark - Crash reporting | ||
|
||
/** | ||
* Inserts the current feature flags into a crash report. | ||
* | ||
*/ | ||
void BugsnagFeatureFlagsWriteCrashReport(const BSG_KSCrashReportWriter * _Nonnull writer, | ||
bool requiresAsyncSafety); | ||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.