开发版本-developer——01 first commit

This commit is contained in:
wbzhan
2019-07-08 18:24:03 +08:00
parent 5a10dfa182
commit 8693efe121
386 changed files with 7069 additions and 1951 deletions
@@ -0,0 +1,32 @@
// '########'########::'######:'########:'##:::'##:
// ... ##..::##.... ##'##... ##:##.... ##:##::'##::
// ::: ##::::##:::: ##:##:::..::##:::: ##:##:'##:::
// ::: ##::::########:. ######::##:::: ##:#####::::
// ::: ##::::##.... ##:..... ##:##:::: ##:##. ##:::
// ::: ##::::##:::: ##'##::: ##:##:::: ##:##:. ##::
// ::: ##::::########:. ######::########::##::. ##:
// :::..::::........:::......::........::..::::..::
//
// Created by 亿刀/禚来强 on 13-1-30.
// Copyright (c) 2013年 Taobao. All rights reserved.
//
#import "TBSDKServerQueue.h"
@protocol TBSDKRequestQueueProtocol;
/** 定义了TBSDKServerQueue的私有方法
*
* 定义了TBSDKServerQueue的私有方法,对外不可见,只提供TBSDK内部调用
* 外部调用可能产生不安全的行为。
*/
@interface TBSDKServerQueue (Private)
//! 添加一个TBSDKServer到请求队列
- (void)addRequest:(id<TBSDKRequestQueueProtocol>)request;
//! 从请求队列中删除一个TBSDKServer。
- (void)removeRequest:(id<TBSDKRequestQueueProtocol>)request;
@end