BBAHTTPManager+Private.h 638 Bytes
//
//  BBAHTTPManager+Private.h
//  BBAAPIRequest
//
//  Created by chenjia09 on 2020/1/15.
//  Copyright © 2020 Baidu. All rights reserved.
//

#import "BBAHTTPManager.h"
#import <BBAAPIRequest/BBAAPIRequest.h>
#import "BBAAPIRequestManagerProtocol.h"

NS_ASSUME_NONNULL_BEGIN

@interface BBAHTTPManager ()<BBAAPIRequestManagerProtocol>
@property (nonatomic, copy, readwrite) NSString *tag;
@property (nonatomic, strong, readwrite) NSURLSession *session;
@property (nonatomic, strong) NSOperationQueue *operationQueue;
@property (nonatomic, strong) NSOperationQueue *delegateQueue;

- (void)recreateSession;
@end

NS_ASSUME_NONNULL_END