Thread safe creation and canceling of download tasks

fixes #364
This commit is contained in:
Ryan Nystrom
2015-03-09 17:57:47 -07:00
parent a40c8172ac
commit db8bbcfd0e
6 changed files with 237 additions and 52 deletions

View File

@@ -0,0 +1,22 @@
/* Copyright (c) 2014-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import "ASThread.h"
@interface ASBasicImageDownloaderContext : NSObject
+ (ASBasicImageDownloaderContext *)contextForURL:(NSURL *)URL;
@property (nonatomic, strong, readonly) NSURL *URL;
@property (nonatomic, weak) NSURLSessionTask *sessionTask;
- (BOOL)isCancelled;
- (void)cancel;
@end