ifish/Ifish/AlibcTradeSDK-3.1.1.96/Frameworks/OpenMtopSDK.framework/Headers/TBSDKServerQueue+Private.h

32 lines
1.0 KiB
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.

// '########'########::'######:'########:'##:::'##:
// ... ##..::##.... ##'##... ##:##.... ##:##::'##::
// ::: ##::::##:::: ##:##:::..::##:::: ##:##:'##:::
// ::: ##::::########:. ######::##:::: ##:#####::::
// ::: ##::::##.... ##:..... ##:##:::: ##:##. ##:::
// ::: ##::::##:::: ##'##::: ##:##:::: ##:##:. ##::
// ::: ##::::########:. ######::########::##::. ##:
// :::..::::........:::......::........::..::::..::
//
// 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