-
-
Notifications
You must be signed in to change notification settings - Fork 340
/
Copy pathSentryStacktrace.h
50 lines (39 loc) · 1.24 KB
/
SentryStacktrace.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#import <Foundation/Foundation.h>
#if __has_include(<Sentry/Sentry.h>)
# import <Sentry/SentryDefines.h>
# import <Sentry/SentrySerializable.h>
#else
# import <SentryWithoutUIKit/SentryDefines.h>
# import <SentryWithoutUIKit/SentrySerializable.h>
#endif
NS_ASSUME_NONNULL_BEGIN
@class SentryFrame;
@interface SentryStacktrace : NSObject <SentrySerializable>
SENTRY_NO_INIT
/**
* Array of all SentryFrame in the stacktrace
*/
@property (nonatomic, strong) NSArray<SentryFrame *> *frames;
/**
* Registers of the thread for additional information used on the server
*/
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *registers;
/**
* Indicates that this stack trace is a snapshot triggered by an external signal.
*/
@property (nonatomic, copy, nullable) NSNumber *snapshot;
/**
* Initialize a SentryStacktrace with frames and registers
* @param frames NSArray
* @param registers NSArray
* @return SentryStacktrace
*/
- (instancetype)initWithFrames:(NSArray<SentryFrame *> *)frames
registers:(NSDictionary<NSString *, NSString *> *)registers;
/**
* This will be called internally, is used to remove duplicated frames for
* certain crashes.
*/
- (void)fixDuplicateFrames;
@end
NS_ASSUME_NONNULL_END