00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSMutableArray;
00010
00011 @interface ISRequestQueue : NSObject
00012 {
00013 id _delegate;
00014 NSMutableArray *_requests;
00015 unsigned int _maxSimultaneousRequests;
00016 unsigned int _dontWatchForNetworkChanges:1;
00017 }
00018
00019 + (unsigned int)maxRequestsForFastConnection;
00020 - (id)init;
00021 - (void)dealloc;
00022 - (void)setDelegate:(id)fp8;
00023 - (void)setWatchesForNetworkChanges:(BOOL)fp8;
00024 - (void)setMaxSimultaneousRequests:(unsigned int)fp8;
00025 - (void)cancelAllRequests;
00026 - (void)cancelRequest:(id)fp8;
00027 - (void)enqueueRequest:(id)fp8;
00028 - (id)requests;
00029 - (id)requestForURL:(id)fp8 tag:(int)fp12;
00030 - (void)_networkChanged:(id)fp8;
00031 - (void)_removeRequest:(id)fp8;
00032 - (void)_startNewRequestsIfAvailable;
00033 - (void)failAllRequestsWithError:(id)fp8;
00034 - (void)request:(id)fp8 finishedWithData:(id)fp12 error:(id)fp16;
00035 - (void)requestWasCancelled:(id)fp8;
00036
00037 @end
00038