zworld-em/Plugins/sentry-unreal/Source/ThirdParty/Mac/include/Sentry/SentrySampleDecision.h

22 lines
418 B
C
Raw Permalink Normal View History

2025-05-11 22:07:21 +08:00
#import <Foundation/Foundation.h>
/**
* Trace sample decision flag.
*/
typedef NS_ENUM(NSUInteger, SentrySampleDecision) {
/**
* Used when the decision to sample a trace should be postponed.
*/
kSentrySampleDecisionUndecided,
/**
* The trace should be sampled.
*/
kSentrySampleDecisionYes,
/**
* The trace should not be sampled.
*/
kSentrySampleDecisionNo
};