GCDKit
GCDKit copied to clipboard
Grand Central Dispatch simplified with swift.
Swift3
Hi @JohnEstropia, can you tell me something about Swift3 migration of GCDKit?
uploadQueen = GDDQueue("upload") uploadQueen.addTask([task1, task2, task3]).notify({ ``` all task finished! ``` }) like this
Hey, this PR adds thin wrappers for `dispatch_suspend` and `dispatch_resume` to `GCDQueue`. One gotcha with `dispatch_suspend` is that it must be balanced with a call to `dispatch_resume` before the queue...