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

36 lines
580 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.

//
// ACMMonitor.h
// Monitor
//
// Created by Vienta on 2019/11/13.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface ACMMonitor : NSObject
/**
* 上传非实时埋点
* @param obj 埋点内容
* @return 埋点存储结果
*/
+ (BOOL)monitorRecord:(id)obj;
/**
* 上传实时埋点
* @param obj 埋点内容
* @return 埋点上传准备结果
*/
+ (BOOL)monitorRealtimeRecord:(id)obj;
/**
* 开始手动上传在设置uploadType为ACMMonitorUploadManual时生效
*/
+ (void)uploadMonitorByManual;
@end
NS_ASSUME_NONNULL_END