Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7602317
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:22:53+00:00 2026-05-30T23:22:53+00:00

Why would anyone ever use dispatch_sync if the block has to wait until the

  • 0

Why would anyone ever use dispatch_sync if the block has to wait until the main thread finishes. What is the benefit of using this function rather than writing code in-line (non-block and outside of Grand Central Dispatch). I may be misunderstanding what dispatch_sync actually does. Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T23:22:55+00:00Added an answer on May 30, 2026 at 11:22 pm

    dispatch_sync does what you think — it posts the block to the nominated queue and blocks the current queue until the block has been performed. The main queue/thread isn’t specifically involved unless you’re either dispatching to it or from it.

    So, you’d generally use it if an operation had to be performed on a different queue/thread — such as a SQLite or OpenGL operation — but you either needed the result of the operation or simply needed to know that the operation was complete for functionality terms.

    The pattern:

        dispatch_async(otherQueue,
        ^{
               id result = doHardTask();
    
               dispatch_async(originalQueue,
                   ^{
                         didGetResult(result);
                   });
        });
    

    is better practice but isn’t really something you can just glue on at the end.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In what situation would anyone ever use the no-argument constructor of the Java Thread
Has anyone ever used Solrnet inside CLR Stored Procedures? I would really appreciate pointers
Has anyone ever seen a crash log like this before where the UIKit and
Has anyone ever used the Bridge pattern in a real world application? If so,
Would anyone happen to know a trick that will keep this MSBuild task from
Has anyone ever worked on a WordPress project with multiple developers in different locations?
Has anyone ever thought to attempt to modify the default ASP.NET Server error page
If anyone has experience using the ZoneEdit API, I'd be grateful for your guidance.
Is this possible? Does anyone ever do this? I feel like I can lay
Anyone ever use the toChecklist jQuery plugin ? It basically turns a multi-select box

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.