Sources/AliNetworkDiagnosis/AliNetworkDiagnosis.framework/Headers/AliDetectConfig.h (16 lines of code) (raw):
//
// AliIntervalDetection.h
// AliNetworkDiagnosis
//
// Created by colin on 2021/11/21.
//
#import <Foundation/Foundation.h>
#import "AliProtocols.h"
#import "AliFlowNode.h"
@interface AliDetectConfig: NSObject
@property NSString* host;
@property AliNetDiagNetworkInterfaceType interfaceType;
@property NSInteger prefer;
@property (nonatomic, strong) id context;
@property NSString* traceID;
@property NSString* src;
@property NSMutableDictionary *detectExtension;
@property NSInteger count;
@property (nonatomic, strong) AliFlowNode *flowNode;
-(void)setTraceFlowNode:(AliFlowNode *)flowNode;
-(NSString*)genNewTraceId;
@end