mirror of
https://github.com/zhigang1992/PINRemoteImage.git
synced 2026-03-29 15:59:12 +08:00
22 lines
565 B
Objective-C
22 lines
565 B
Objective-C
//
|
|
// PINDataTaskOperation.h
|
|
// Pods
|
|
//
|
|
// Created by Garrett Moon on 3/12/15.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "PINURLSessionManager.h"
|
|
|
|
@interface PINDataTaskOperation : NSOperation
|
|
|
|
@property (nonatomic, readonly) NSURLSessionDataTask *dataTask;
|
|
|
|
+ (instancetype)dataTaskOperationWithSessionManager:(PINURLSessionManager *)sessionManager
|
|
request:(NSURLRequest *)request
|
|
completionHandler:(void (^)(NSURLResponse *response, NSError *error))completionHandler;
|
|
|
|
@end
|