Suppose I have several NSOperation objects attached to a parallel queue.
As part of these NSOperations, I would call the synchronous method NSURLConnectionClass, sendSynchronousRequest ...so as not to spoil my code by tracking various connections from one delegate.
Apple says it sendSynchronousRequest ...will automatically create a separate thread with a start loop to track NSURLConnection delegate messages.
But I already have some additional threads (working inside NSOperation)! So the question is: if I have, say, 10 NSOperationobjects, and each of them calls a synchronous method NSURLConnection, will it create 10 more additional ("automatically created") threads with run cycles or will there be only one for all of them?
source
share