-
Notifications
You must be signed in to change notification settings - Fork 243
/
CountlySDKLimitsConfig.h
36 lines (26 loc) · 1.13 KB
/
CountlySDKLimitsConfig.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// CountlySDKLimitsConfig.h
//
// This code is provided under the MIT License.
//
// Please visit www.count.ly for more information.
#import <Foundation/Foundation.h>
extern const NSUInteger kCountlyMaxKeyLength;
extern const NSUInteger kCountlyMaxValueSize;
extern const NSUInteger kCountlyMaxBreadcrumbCount;
extern const NSUInteger kCountlyMaxSegmentationValues;
extern const NSUInteger kCountlyMaxStackTraceLineLength;
extern const NSUInteger kCountlyMaxStackTraceLinesPerThread;
@interface CountlySDKLimitsConfig : NSObject
- (void)setMaxKeyLength:(NSUInteger)maxKeyLength;
- (void)setMaxValueSize:(NSUInteger)maxValueSize;
- (void)setMaxBreadcrumbCount:(NSUInteger)maxBreadcrumbCount;
- (void)setMaxSegmentationValues:(NSUInteger)maxSegmentationValues;
- (void)setMaxStackTraceLineLength:(NSUInteger)maxStackTraceLineLength;
- (void)setMaxStackTraceLinesPerThread:(NSUInteger)maxStackTraceLinesPerThread;
- (NSUInteger)getMaxKeyLength;
- (NSUInteger)getMaxValueSize;
- (NSUInteger)getMaxBreadcrumbCount;
- (NSUInteger)getMaxSegmentationValues;
- (NSUInteger)getMaxStackTraceLineLength;
- (NSUInteger)getMaxStackTraceLinesPerThread;
@end