bonus-material-app/nativeplugins/Mpaas-Scan/ios/APRemoteLogging.framework/Headers/APMonitorPointManager.h

43 lines
1.1 KiB
C
Raw Permalink Normal View History

2024-12-20 09:23:59 +08:00
//
// APMonitorPointMrg.h
// AlipayPortal
//
// Created by tudou on 11-12-19.
// Copyright (c) 2011年 aliPay. All rights reserved.
//
#import <Foundation/Foundation.h>
//FIXME:埋点的老接口,不要在这个类里面再添加方法
@interface APMonitorPointManager : NSObject
@property (atomic, strong) NSString *userID;
@property (nonatomic, assign) BOOL hasAuthenticated;
+ (APMonitorPointManager*)sharedInstance;
/**
*
* 8.3使8.3使writeLogWithActionId:..
*
* APRemoteLogger.h
*
* @param firstLog
**/
-(void)addLogsAndKeys:(NSString *)firstLog, ... /*__deprecated*/;
/**
* id跟认证信息
* @param userId,id
*/
- (void)setUserId:(NSString *)userId;
/**
* id跟认证信息
* @@param authenticated,
*/
- (void)setAuthenticated:(BOOL)authenticated;
@end