Tagged Questions

9
votes
1answer
157 views

What are the different ways for calling my method on separate thread?

I have some data calculation method (let it be "myMethod:"), and I want to move the call to another thread because I don't want to block my main UI functionality. So, started to do some research on ...
4
votes
3answers
271 views

Why should I choose GCD over NSOperation and blocks for high-level applications?

Apple's Grand Central Dispatch reference says: "...if your application needs to operate at the Unix level of the system—for example, if it needs to manipulate file descriptors, Mach ports, ...
4
votes
1answer
179 views

When to use NSEnumerationConcurrent

Every now and then, I notice that I'm using a block to iterate over a collection without writing to any shared data or causing any side effects. I consider adding in an NSEnumerationConcurrent option, ...
4
votes
2answers
746 views

Concurrent network client in Cocoa

I'm trying to work out in my head the best way to structure a Cocoa app that's essentially a concurrent download manager. There's a server the app talks to, the user makes a big list of things to pull ...
3
votes
1answer
360 views

Implementing concurrent read exclusive write model with GCD

I am trying to understand the proper way of using Grand Central Dispatch (GCD) to implement concurrent read exclusive write model of controlling access to a resource. Suppose there is a ...
3
votes
2answers
2k views

GCD Poor Performance

As you may remember, I am trying to use GCD to speed up some of my code, namely a collision detection and resolution engine. However, I am clearly doing something wrong because all of my GCD code is ...
2
votes
1answer
104 views

NSInvocationOperation and NSOperationQueue concurrency

I am using NSInvocationOperation with NSOperationQueue developing in iOS5. According to apple documentation on invocation objects: The NSInvocationOperation class is a concrete subclass of ...
1
vote
1answer
173 views

iOS concurrency / version distribution

I have one question but it can probably be answered by one of several related questions. I'm developing a simple card game on iOS that requires me to run some AI and game logic concurrently with the ...
1
vote
4answers
203 views

Does a GCD dispatch_async wait on NSLog()?

From what I've read about Grand Central Dispatch, GCD does not do preemptive multitasking; it is all a single event loop. I'm having trouble making sense of this output. I have two queues just doing ...
1
vote
2answers
130 views

GCD global concurrent queue not always concurrent(iOS device)?

On iOS device, I recently found that a strange behavior. Code1: dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ ...
1
vote
2answers
576 views

EXC_BAD_ACCESS with using dispatch_async

I'm attempting to execute a block via an asynchronous dispatch queue in Objective-C++. Here's a class fragment of what I'm trying to do... class Blah { public: void dispatch(const EventPtr& ...
0
votes
1answer
22 views

iPhone - GCD sending async operations to a serial dispatch queue

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 ...
0
votes
2answers
37 views

Multiple serial Dispatch Queue Not running Concurrentl?

I learning Concurrency programming topic in ios. I did a sample application for multiple serial dispatch queue. -(IBAction)SerialDispatchAction:(id)sender { s1queue = dispatch_queue_create( ...
0
votes
2answers
100 views

Serializing NSURLConnection Requests (iOS) - Use Synchronous Request?

I'm looping through a list of dates and making a request to a web server for each date in the list. I would like each date to be processed completely before the subsequent request is sent to the ...
0
votes
1answer
26 views

How can I determine the appropriate number of tasks with GCD or similar?

I very often encounter situations where I have a large number of small operations that I want to carry out independently. In these cases, the number of operations is so large compared to the actual ...
0
votes
2answers
136 views

How to dispatch a block with parameter on main queue or thread

Blocks are awesome. Because I thought I understood them, I wanted to up the ante and use them in a little more complex situation. Now these blocks are kicking me in the face, and I'm trying to break ...
0
votes
3answers
362 views

How to write into an array from a dispatch_apply (GCD) loop?

I have written code to calculate the dynamics of a large set of coupled master equation using the Runge-Kutta-method. The code contains a lot of for-loops, where each step is independent. I intend to ...
0
votes
1answer
154 views

NSOperation not being fully deallocated? Live Bytes not less than Overall Bytes in Allocations Utility despite operations completing

I'm running a large number of NSOperation tasks and my application is using a great deal of memory. While it should use quite a bit, it's using magnitudes more than it should, and I'm thinking, from ...