DispatchKit
- 授权协议: MIT
- 开发语言: Swift
- 操作系统: iOS
- 软件首页: https://github.com/JohnEstropia/DispatchKit
- 官方下载: https://github.com/JohnEstropia/DispatchKit
软件介绍
DispatchKit 能迅速简化中央调度。
创建和初始化队列:
let mainQueue: GCDQueue = .Main
let defaultQueue: GCDQueue = .Default
let customSerialQueue: GCDQueue = .createSerial("mySerialQueue")
let customConcurrentQueue: GCDQueue = .createConcurrent("myConcurrentQueue")
