/* * This file is part of the SDWebImage package. * (c) Olivier Poitrey * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ #import #import "SDWebImageDownloaderDelegate.h" #import "SDWebImageCompat.h" extern NSString *const SDWebImageDownloadStartNotification; extern NSString *const SDWebImageDownloadStopNotification; @interface SDWebImageDownloader : NSObject { @private NSURL *url; id delegate; NSURLConnection *connection; NSMutableData *imageData; id userInfo; BOOL lowPriority; } @property (nonatomic, retain) NSURL *url; @property (nonatomic, assign) id delegate; @property (nonatomic, retain) NSMutableData *imageData; @property (nonatomic, retain) id userInfo; @property (nonatomic, readwrite) BOOL lowPriority; + (id)downloaderWithURL:(NSURL *)url delegate:(id)delegate userInfo:(id)userInfo lowPriority:(BOOL)lowPriority; + (id)downloaderWithURL:(NSURL *)url delegate:(id)delegate userInfo:(id)userInfo; + (id)downloaderWithURL:(NSURL *)url delegate:(id)delegate; - (void)start; - (void)cancel; // This method is now no-op and is deprecated + (void)setMaxConcurrentDownloads:(NSUInteger)max __attribute__((deprecated)); @end