GCDKit icon indicating copy to clipboard operation
GCDKit copied to clipboard

Grand Central Dispatch simplified with swift.

Results 3 GCDKit issues
Sort by recently updated
recently updated
newest added

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...