Files
CustomPlugin/Libs/YTXMonitor.framework/Headers/ACMUploadManager.h
2023-04-10 18:48:16 +08:00

27 lines
538 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// ACMUploadManager.h
// Monitor
//
// Created by Vienta on 2019/11/13.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface ACMUploadManager : NSObject
/**
* 上传失败的数据同时会上传埋点和日志的数据如果有降级限流的情况最好是在设置完成相应的降级接口setACMLoggerEnable:和 setACMMonitorEnable之后调用
*/
+ (void)uploadFailedData;
/**
* 业务层配置降级限流
*/
+ (void)setLimitConfig:(NSDictionary *)info;
@end
NS_ASSUME_NONNULL_END