mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
24 lines
583 B
C
24 lines
583 B
C
![]() |
//
|
||
|
// OfflineFetchImages.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Samuel Clay on 7/15/13.
|
||
|
// Copyright (c) 2013 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import "NewsBlurAppDelegate.h"
|
||
|
#import "FMDatabaseQueue.h"
|
||
|
#import "ASINetworkQueue.h"
|
||
|
|
||
|
@interface OfflineFetchImages : NSOperation
|
||
|
|
||
|
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
|
||
|
@property (readwrite) ASINetworkQueue *imageDownloadOperationQueue;
|
||
|
|
||
|
- (NSArray *)uncachedImageUrls;
|
||
|
- (void)storeCachedImage:(ASIHTTPRequest *)request;
|
||
|
- (void)cachedImageQueueFinished:(ASINetworkQueue *)queue;
|
||
|
|
||
|
@end
|