Suppose I am doing an async connection to a web service, which by definition since it is async runs in a separate thread from the main thread.

Now lets say I put this job or block of code in a serial dispatch queue. Since serial dispatch queues don't process more than 1 job at a time, but I am sending a job that is already async, would it then consider the job to be done after the call to the async job is made? or would it actually wait for the async job to get done before processing the next job?.

What about a concurrent queue, would the concurrent generated thread, generate yet another thread to process the async operation?

EDIT: I realize my question is not really clear, so my question is:

If I am using the same serial dispatch queue, and i dispatch using dispatch_async a block of code that already performs an async operation for example a NSURLConnection – initWithRequest:delegate: that runs async, will the block be considered completed by the serial queue after the async call?, and will that async call generate yet another thread?. Or will the queue still wait for job 1 that is already async to finish before processing the second job?.

link|improve this question

Are you dispatching to the same queue? – DarkDust Feb 15 at 14:58
@DarkDust yes using the same queue. – Oscar Gomez Feb 15 at 15:12
feedback

1 Answer

up vote 1 down vote accepted

When you dispatch to a serial queue, each dispatched block is processed one after the other. So if your first block takes a long time to process, the second block will not be called until the long-running first block is finished.

If you're enqueueing with dispatch_async the new block is simply put to the end of the queue, the function dispatch_async immediately returns and you can go on. But the block won't be executed until the previous blocks have finished.

However, dispatch_sync will wait until the block got its turn to execute and finish. So in your case, dispatch_sync will block until the long-running first block has finished.

If you dispatch to concurrent queue, then the second block will get to run in a new thread and thus the first block will not prevent the second from running.

You could also create two queues and dedicate them to different tasks, for example have one queue only for your web service stuff and another queue for different tasks. It depends on how these operations relate to each other and which may be run in parallel and which must run one after another.

link|improve this answer
Thank you for your answer DarkDust, I realize my question is not clear, so I edited my answer sorry for the confusion. I upvoted your answer since it is relevant to the first unclear question. – Oscar Gomez Feb 15 at 16:21
The queue will not abort the first block, so the first block is not considered completed. The first block will still be considered running, and the second will be considered enqueued. So the queue will still wait for the first block to complete before it starts executing the second block. But the actual function call dispatch_async will return immediately (that's the point of _async). – DarkDust Feb 15 at 16:38
Thank you that makes sense. – Oscar Gomez Feb 15 at 18:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.