Files
waf-platform/EdgeHttpDNS/sdk/ios/AlicloudHttpDNS/Scheduler/HttpdnsScheduleExecutor.h
2026-02-20 17:56:24 +08:00

19 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.

//
// HttpdnsScheduleExecutor.h
// AlicloudHttpDNS
//
// Created by ElonChan地风 on 2017/4/11.
// Copyright © 2017年 alibaba-inc.com. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface HttpdnsScheduleExecutor : NSObject
- (NSDictionary *)fetchRegionConfigFromServer:(NSString *)updateHost error:(NSError **)pError;
// 多账号隔离:允许携带账号与超时初始化,避免依赖全局单例
- (instancetype)initWithAccountId:(NSInteger)accountId timeout:(NSTimeInterval)timeoutInterval;
@end