New posts in grand-central-dispatch

What's the difference between the "global queue" and the "main queue" in GCD?

How to stop the execution of tasks in a dispatch queue?

Does dispatch_async(dispatch_get_main_queue(), ^{...}); wait until done?

Why can't we use a dispatch_sync on the current queue?

Operation Queue vs Dispatch Queue for iOS Application

Do you need to create an NSAutoreleasePool within a block in GCD?

Adding items to Swift array across multiple threads causing issues (because arrays aren't thread safe) - how do I get around that?

How can I retrieve a return value from a completion block?

using dispatch_sync in Grand Central Dispatch

Suspending GCD query problem

Wait for completion handler to finish - Swift

Workaround on the threads limit in Grand Central Dispatch?

What's the difference between synchronous and asynchronous calls in Objective-C, versus multi-threading?

Can I declare dispatch_once_t predicate as a member variable instead of static?

Whither dispatch_once in Swift 3?

Alternatives to dispatch_get_current_queue() for completion blocks in iOS 6?

Correct Singleton Pattern Objective C (iOS)?

How to stop a DispatchWorkItem in GCD?

Grand Central Dispatch (GCD) vs. performSelector - need a better explanation

Difference between dispatch_async and dispatch_sync on serial queue?