NSOperation 与 NSOperationQueue 学
2019-04-18 本文已影响0人
melody5417
简介
苹果提供的一套多线程解决方案
基于GCD更高一层的封装
完全面向对象
比GCD更简单易用,可读性更高。
为什么使用 NSOperation,NSOperationQueue?
- 可添加完成后的代码块
- 可添加操作之间的依赖关系
- 可设定操作的优先级
- 可取消未开始的操作
- 支持KVO观察操作执行的状态: isExecuting, isFinished, isCancelled
NSOperation
- Abstract class, 不可直接使用该类。
- 使用子类 NSInvocationOpeation 或者 NSBlockOperation 或者 自定义子类 执行真正的任务。
- NSInvocationOperation 会在开启线程执行
- NSBlockOperation 不一定会在开启线程中执行,是否开启新线程,取决于操作的个数,由系统来决定。
- 支持添加到 NSOperationQueue 中 或者 单独启动 start 。
- 若单独启动 start:
Synchronous operation 会在当前线程执行。
Asynchronous operation 会开启另外一个线程来执行。 - 若添加到queue中管理:
queue会忽略 asynchronous 属性,直接新起线程执行operation,所以可以直接写同步operation。
大多数operation都是配合queue来管理,所以关注同步operation就可以了。
- 重写属性或者添加额外属性,建议遵守 KVC 和 KVO。
- Multicore Considerations:多线程访问安全,无需加锁。若重写Operations内部方法,确保线程安全。
- 子类化同步Operation,只需要重写 main 方法。
也可能需要重写initialization method。
若定义了getter 和setter,需要确保线程安全。 - State
- isReady
- isExecuting:如果重写了start方法,则需要手动处理
- isFinished:如果重写了start方法,则需要手动处理
- Cancel
- cancel()
- cancelAllOperations()
- 未开始的operation会立即取消
- 已开始的operation只是置了标志位 isCancelled=YES,任务并不会立即停止,需要代码手动check并停止。
your main task code should periodically check the value of the cancelled property.
NSOperationQueue
- NSOperationQueue 对于添加到队列中的操作, 首先进入准备就绪的状态(就绪状态取决于操作之间的依赖关系,当一个操作的所有依赖都已经完成), 然后进入就绪状态的操作的开始执行顺序(非结束执行顺序)由操作之间相对的优先级决定(优先级是操作对象自身的属性)。
- 操作队列通过设置 最大并发操作数(maxConcurrentOperationCount) 来控制并发、串行。这个值不应该超过系统限制。
- 两种队列: 主队列,自定义队列。
- [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.
- KVO Properties
- operations
- opreationCount
- maxConcurrentOperationCount
- suspended
- name
- 线程间通信
[[NSOperationQueue mainQueue] addOpeationWithBlock:^{
.....
}];
Xmind 笔记
参考文章
1 NSOperation
2 NSOperationQueue
3 iOS多线程:『NSOperation、NSOperationQueue』详尽总结