00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSMutableArray;
00010
00011 @interface IMAPDownloadCache : NSObject
00012 {
00013 NSMutableArray *_downloads;
00014 }
00015
00016 - (void)dealloc;
00017 - (id)downloadForMessage:(id)fp8;
00018 - (id)downloadForUid:(unsigned long)fp8 section:(id)fp12 length:(unsigned long)fp16;
00019 - (id)downloadForUid:(unsigned long)fp8 section:(id)fp12 expectedLength:(unsigned long)fp16;
00020 - (id)downloadForUid:(unsigned long)fp8 section:(id)fp12 range:(struct _NSRange)fp16;
00021 - (void)handleFetchResponse:(id)fp8 forUid:(unsigned long)fp12;
00022 - (void)handleFetchResponses:(id)fp8;
00023 - (void)processResultsForUid:(unsigned long)fp8;
00024 - (void)cleanUpDownloadsForUid:(unsigned long)fp8;
00025 - (void)addCommandsForDownload:(id)fp8 toPipeline:(id)fp12;
00026
00027 @end
00028