美文网首页
NSOperation 与 NSOperationQueue 学

NSOperation 与 NSOperationQueue 学

作者: melody5417 | 来源:发表于2019-04-18 19:10 被阅读0次

    简介

    苹果提供的一套多线程解决方案
    基于GCD更高一层的封装
    完全面向对象
    比GCD更简单易用,可读性更高。

    为什么使用 NSOperation,NSOperationQueue?

    1. 可添加完成后的代码块
    2. 可添加操作之间的依赖关系
    3. 可设定操作的优先级
    4. 可取消未开始的操作
    5. 支持KVO观察操作执行的状态: isExecuting, isFinished, isCancelled

    NSOperation

    1. Abstract class, 不可直接使用该类。
    2. 使用子类 NSInvocationOpeation 或者 NSBlockOperation 或者 自定义子类 执行真正的任务。
    • NSInvocationOperation 会在开启线程执行
    • NSBlockOperation 不一定会在开启线程中执行,是否开启新线程,取决于操作的个数,由系统来决定。
    1. 支持添加到 NSOperationQueue 中 或者 单独启动 start 。
    • 若单独启动 start:
      Synchronous operation 会在当前线程执行。
      Asynchronous operation 会开启另外一个线程来执行。
    • 若添加到queue中管理:
      queue会忽略 asynchronous 属性,直接新起线程执行operation,所以可以直接写同步operation。
    大多数operation都是配合queue来管理,所以关注同步operation就可以了。
    
    1. 重写属性或者添加额外属性,建议遵守 KVC 和 KVO。
    2. Multicore Considerations:多线程访问安全,无需加锁。若重写Operations内部方法,确保线程安全。
    3. 子类化同步Operation,只需要重写 main 方法。
      也可能需要重写initialization method。
      若定义了getter 和setter,需要确保线程安全。
    4. State
      • isReady
      • isExecuting:如果重写了start方法,则需要手动处理
      • isFinished:如果重写了start方法,则需要手动处理
    5. Cancel
      • cancel()
      • cancelAllOperations()
      • 未开始的operation会立即取消
      • 已开始的operation只是置了标志位 isCancelled=YES,任务并不会立即停止,需要代码手动check并停止。
    your main task code should periodically check the value of the cancelled property. 
    

    NSOperationQueue

    1. NSOperationQueue 对于添加到队列中的操作, 首先进入准备就绪的状态(就绪状态取决于操作之间的依赖关系,当一个操作的所有依赖都已经完成), 然后进入就绪状态的操作的开始执行顺序(非结束执行顺序)由操作之间相对的优先级决定(优先级是操作对象自身的属性)。
    2. 操作队列通过设置 最大并发操作数(maxConcurrentOperationCount) 来控制并发、串行。这个值不应该超过系统限制。
    3. 两种队列: 主队列,自定义队列。
      • [NSOperationQueue mainQueue]
      • [[NSOperationQueue alloc] init]
    Operation queues retain operations until they're finished,
    and queues themselves are retained until all operations are finished. 
    Suspending an operation queue with operations that aren't finished can result in a memory leak.
    
    1. KVO Properties
      • operations
      • opreationCount
      • maxConcurrentOperationCount
      • suspended
      • name
    2. 线程间通信
    [[NSOperationQueue mainQueue] addOpeationWithBlock:^{
            .....
    }];
    
    Xmind 笔记

    参考文章

    1 NSOperation
    2 NSOperationQueue
    3 iOS多线程:『NSOperation、NSOperationQueue』详尽总结

    相关文章

      网友评论

          本文标题:NSOperation 与 NSOperationQueue 学

          本文链接:https://www.haomeiwen.com/subject/wlfxgqtx.html