ifish/Ifish/HTTPDNS/EMASRest.framework/Headers/EMASRestSendService+MultiCh...

30 lines
911 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.

//
// EMASRestSendService+MultiChannel.h
// AlicloudCommonAnalytics
//
// Created by sky on 2020/6/11.
// Copyright © 2020 aliyun. All rights reserved.
//
#import "EMASRestSendService.h"
#import "EMASRestConfiguration.h"
NS_ASSUME_NONNULL_BEGIN
@interface EMASRestSendService (MultiChannel)
/**
* 异步接口注意数据大小不能超过30K
*/
+ (void)sendLogAsyncWithConfiguration:(EMASRestConfiguration*)configuration aPageName:(NSObject *)aPageName eventId:(int) aEventId arg1:(NSString*) aArg1 arg2:(NSString*) aArg2 arg3:(NSString*) aArg3 args:(NSDictionary *) aArgs;
/**
* 同步接口注意数据大小不能超过30K
*/
+ (BOOL)sendLogSyncWithConfiguration:(EMASRestConfiguration*)configuration aPageName:(NSObject *)aPageName eventId:(int) aEventId arg1:(NSString *) aArg1 arg2:(NSString *) aArg2 arg3:(NSString *) aArg3 args:(NSDictionary *) aArgs;
@end
NS_ASSUME_NONNULL_END