NSOperation的使用细节 [2]

简介:

NSOperation的使用细节 [2]

 

 

这一节我们来写自定义nonconcurrent的operation,自定义nonconcurrent的operation很简单,重写main方法,之后处理好cancel事件即可。

 

在开始写nonconcurrent的operation之前,我们需要先了解几个关于NSOperationQueue的细节。

 

挂起操作

通常情况下,将操作添加到队列中是会立马执行的(如果没有设置队列的最大并发数目),将suspended设置成YES后会将没有执行的operation全部挂起。

 

NSOperationQueue无法重复添加NSOperation

并且,NSOperationQueue也无法移除已经添加的操作

 

NSOperationQueue的cancelAllOperations仅仅是将所有的NSOperation的isCancelled置位为YES而已(NSOperation自身的cancel操作也是将isCancelled设置成YES)

 

我们可以通过设置NSOperationQueue的maxConcurrentOperationCount来让操作按照添加顺序执行

注意哦,NSOperationQueue并不能将单个的NSOperation进行挂起操作,NSOperation自身也无法将自己暂停后再进行恢复操作,当NSOperation取消了之后,你再也无法对其进行恢复操作了,在NSOperationQueue上,你是无法实现的。

 

以下提供源码

//
//  NonconcurrentOperation.h
//  NSOperationExample
//
//  Created by YouXianMing on 15/9/4.
//  Copyright (c) 2015年 YouXianMing. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface NonconcurrentOperation : NSOperation

@property (nonatomic, strong)           NSString  *urlString;
@property (nonatomic, strong, readonly) NSData    *netData;

@end


//
//  NonconcurrentOperation.m
//  NSOperationExample
//
//  Created by YouXianMing on 15/9/4.
//  Copyright (c) 2015年 YouXianMing. All rights reserved.
//

#import "NonconcurrentOperation.h"

@interface NonconcurrentOperation ()

@property (nonatomic, strong) NSData   *netData;
@property (nonatomic)         BOOL      isDone;

@end

@implementation NonconcurrentOperation

- (void)main {
    
    if ([self isCancelled] == YES || [self isDone] == YES) {
        
        return;
    }
    
    NSURL *url            = [NSURL URLWithString:_urlString];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    
    self.netData = [NSURLConnection sendSynchronousRequest:request
                                         returningResponse:nil
                                                     error:nil];
    if (self.netData) {
        
        self.isDone = YES;
    }
    
    [self showThread];
}

- (void)showThread {

    if ([NSThread currentThread].isMainThread == YES) {
        
        NSLog(@"Run in MainThread %@", self.name);
        
    } else {
        
        NSLog(@"Run in SubThread  %@", self.name);
    }
}

@end


//
//  ViewController.m
//  NSOperationExample
//
//  Created by YouXianMing on 15/9/4.
//  Copyright (c) 2015年 YouXianMing. All rights reserved.
//

#import "ViewController.h"
#import "NonconcurrentOperation.h"

@interface ViewController () {

    NonconcurrentOperation *operation1;
    NonconcurrentOperation *operation2;
}

@property (nonatomic, strong) NSOperationQueue *queue;

@end

@implementation ViewController

- (void)viewDidLoad {
    
    [super viewDidLoad];
    
    self.queue                             = [[NSOperationQueue alloc] init];
    self.queue.maxConcurrentOperationCount = 2;
    
    // 操作1
    operation1           = [[NonconcurrentOperation alloc] init];
    operation1.urlString = @"http://pic.cnblogs.com/avatar/607542/20150807105148.png";
    operation1.name      = @"operation1";
    
    // 操作2
    operation2           = [[NonconcurrentOperation alloc] init];
    operation2.urlString = @"http://pic.cnblogs.com/avatar/615197/20150505132152.png";
    operation2.name      = @"operation2";
    
    [self.queue addOperation:operation1];
    [self.queue addOperation:operation2];
    
    [self performSelector:@selector(event) withObject:nil afterDelay:1.f];
}

- (void)event {

    NSLog(@"%@", self.queue.operations);
}

@end

目录
相关文章
|
1月前
|
C++
C++番外篇——对于继承中子类与父类对象同时定义其析构顺序的探究
C++番外篇——对于继承中子类与父类对象同时定义其析构顺序的探究
53 1
|
3月前
|
Java
【多线程面试题十五】、synchronized可以修饰静态方法和静态代码块吗?
这篇文章讨论了Java中的`synchronized`关键字是否可以修饰静态方法和静态代码块,指出`synchronized`可以修饰静态方法,创建一个类全局锁,但不能修饰静态代码块。
|
编译器 调度
FreeRTOS任务的创建(动态方法和静态方法)
FreeRTOS任务的创建(动态方法和静态方法)
798 0
|
Java 编译器
复习篇【类的构造方法与代码块的执行】
复习篇【类的构造方法与代码块的执行】
复习篇【类的构造方法与代码块的执行】
继承情况下链式调用的异常处理
关于abstract class B<T extends B<T>> ,class A extends B<A>的用法?该用法用在链式调用中有继承关系时该如何使用
100 0
|
Java 编译器 C++
“生而有值”—教你使用构造函数 | 带你学《Java面向对象编程》之五
本节结合多组实例从多个方面介绍了重写构造函数的意义以及构造函数与setter函数的异同,指出了一些编写构造函数相关的注意事项。
“生而有值”—教你使用构造函数   | 带你学《Java面向对象编程》之五
匿名内部类方式使用多线程
在开发中,为了方便使用线程,需要随手开线程,最简单的做法就是采用匿名内部类方式使用多线程。   匿名内部类的格式:     new 类名或者接口名() {       重写方法;     }   本质:是该类的子类对象或者该接口的实现类对象。
1060 0