I am using NSInvocationOperation with NSOperationQueue developing in iOS5. According to apple documentation on invocation objects:

The NSInvocationOperation class is a concrete subclass of NSOperation... This class implements a non-concurrent operation.

Ok, so my NSInvocationOperation object executes synchronously? (correct me here) Apple's docs also says on operation queue objects:

In iOS, operation queues do not use Grand Central Dispatch to execute operations. They create separate threads for non-concurrent operations and launch concurrent operations from the current thread.

I am using the NSInvocationObject, which is a non-concurrent object, and adding it to to the operation queue like so:

[operationQueue addOperation:operation];

so my question is: 1) Since the operation queue will be spawning a separate thread to execute the NSInvocationObject as it says in the docs, will it be run asynchronously instead of synchronously?

link|improve this question

73% accept rate
Concurrent in the sense of the "isConcurrent" flag on NSOperations is a curious and somewhat misleading term. It is used consistently and vaguely makes sense in the context, but it may not mean what you expect. – Catfish_Man Dec 10 '11 at 5:14
feedback

1 Answer

up vote 3 down vote accepted

If you add it to an operation queue it will run asynchronously with respect to the rest of your code, but synchronously on the operation queue. It's pretty much like:

With synchronous objects:

Creating thread
    |
    |\
    | \______
    |        |
    |       Operation A
    |        |
    |       Operation B
    |        |
    |        |

With asynchronous objects:

Creating thread
    |
    |\
    | \___________________
    |                     |
    |\                  Operation A
    | \______             |
    |        |            |
    |       Operation B   |
    |        |            |
    |        |            |
link|improve this answer
Thanks man. Seems like ascii diagrams made it so much simpler than the the verbose docs ^^, – Relik Dec 10 '11 at 3:59
needed one small clarification about your diagram. Adding the synchronous NSInvocationOperation object to the NSOperationQueue makes it function like the first diagram? And if that is the case, will this be functioning like a serial queue? – Relik Dec 18 '11 at 17:53
feedback

Your Answer

 
or
required, but never shown

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