Tagged Questions
15
votes
3answers
558 views
CoreData and threads / GCD
I'm a beginner with GCD and CoreData, and I need your help to use CoreData with CGD, so that the UI is not locked while I add 40.000 records to CoreData.
I know that CD is not thread-safe, so I have ...
10
votes
1answer
510 views
What is the difference between GCD Dispatch Sources and select()?
I've been writing some code that replaces some existing:
while(runEventLoop){
if(select(openSockets, readFDS, writeFDS, errFDS, timeout) > 0){
// check file descriptors for activity and ...
9
votes
3answers
2k views
Grand Central Dispatch (GCD) vs. performSelector - need a better explanation
I've used both GCD and performSelectorOnMainThread:waitUntilDone in my apps, and tend to think of them as interchangeable--that is, performSelectorOnMainThread:waitUntilDone is an Obj-C wrapper to the ...
8
votes
1answer
132 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 ...
8
votes
5answers
2k views
Does pthreads provide any advantages over GCD?
Having recently learned Grand Central Dispatch, I've found multithreaded code to be pretty intuitive(with GCD). I like the fact that no locks are required(and the fact that it uses lockless data ...
6
votes
4answers
1k views
Could Grand Central Dispatch (`libdispatch`) ever be made available on Windows?
I’m looking into multithreading, and GCD seems like a much better option than manually writing a solution using pthread.h and pthreads-win32. However, although it looks like libdispatch is either ...
5
votes
2answers
179 views
How is Grand Central Dispatch so fast? (For this Quicksort algorithm)
In an effort to brush up on some multithreading/sorting fun, I decided to put together a Quicksort test (written in Objective-C) that uses Grand Central Dispatch to determine how much faster it is to ...
5
votes
3answers
717 views
How to parallelize Sudoku solver using Grand Central Dispatch?
As a programming exercise, I just finished writing a Sudoku solver that uses the backtracking algorithm (see Wikipedia for a simple example written in C).
To take this a step further, I would like to ...
4
votes
2answers
820 views
Multithreading and autorelease pool
As I'm mastering my skills with multithreading with GCD, I've come across some question. Suppose you have the following method:
- (void)method {
NSString *string= [NSString string]; //will be ...
4
votes
5answers
3k views
Best practice to send a lot of data in background on iOS4 device?
I have an app that needs to send data (using POST) to a server. This function has to be on one of the NavigationController sub-controllers and user should be able to navigate away from this controller ...
4
votes
1answer
1k views
Performance test: sem_t v.s. dispatch_semaphore_t and pthread_once_t v.s. dispatch_once_t
I wanted to know what would be better/faster to use POSIX calls like pthread_once() and sem_wait() or the dispatch_* functions, so I created a little test and am surprised at the results (questions ...
4
votes
1answer
3k views
Dispatch queues: How to tell if they're running and how to stop them
I'm just playing around with GCD and I've written a toy CoinFlipper app.
Here's the method that flips the coins:
- (void)flipCoins:(NSUInteger)nFlips{
// Create the queues for work
...
3
votes
2answers
145 views
dispatch_async a custom queue never exits block
dispatch_queue_t callerQueue = dispatch_get_current_queue();
dispatch_retain(callerQueue);
dispatch_queue_t downloadQueue = dispatch_queue_create("Download Queue",NULL);
dispatch_async(downloadQueue, ...
3
votes
3answers
289 views
How to stop the execution of tasks in a dispatch queue?
If I have a serial queue, how can I, from the main thread, tell it to immediately stop execution and cancel all of its tasks?
3
votes
2answers
304 views
Parallel reduce algorithm implementation
I've been investigating implementations of reduce [inject, fold, whatever you want to call it] functions in Objective-C using blocks and was wondering if there were any techniques for parallelizing ...
3
votes
2answers
1k views
Can you use cancel/isCancelled with GCD/dispatch_async?
I've been wondering, can you use cancel/cancelAllOperations/.isCancelled with a thread you have launched with GCD?
Currently, I just use a boolean as a flag, to cancel the background process.
Let's ...
2
votes
1answer
82 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
...
2
votes
1answer
77 views
Is dataWithContentsOfURL bad when launching the app?
I make an app that accesses some data on the first launch and then displays it. I've been downloading this data this way:
NSData *data = [NSData dataWithContentsOfURL:url];
Is this bad? Right now ...
2
votes
3answers
134 views
Using a single shared background thread for iOS data processing?
I have an app where I'm downloading a number of resources from the network, and doing some processing on each one. I don't want this work happening on the main thread, but it's pretty lightweight and ...
2
votes
1answer
102 views
What happens internally when dispatch_apply is called within dispatch_sync from the same concurrent queue
Example:
dispatch_sync(someConcurrentQueue, ^(){
dispatch_apply(5,someConcurrentQueue, ^(size_t i){
// do some non-thread safe operation
});
});
I decided to test this out and ...
2
votes
3answers
273 views
Objective-C dispatch method with block that will run on the *caller* thread
I write a black box class that does heavy processing in the background using Grand Central Dispatch. I intend to provide a continuation style API, something like:
- (void) processHeavyStuff:(id) ...
2
votes
2answers
359 views
NSManagedObjectContext and GCD
From Apple's Core Data Programming Guide:
You should give each thread its own
entirely private managed object
context and keep their associated
object graphs separated on a
per-thread ...
1
vote
1answer
62 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
3answers
90 views
Main Thread Conflict / Timing Issue - GCD - iPhone
I have the following dispatch queue my app :
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(queue, ^ {
[activeModel freeUpMallocedData];
...
1
vote
1answer
48 views
CGPDFDocument threading
Apple's Documentation mentions that threading the quartzcore rendering of PDF's must be manually handled. Has anyone Implemented multi-core PDF rendering or have any idea how one could offload the ...
1
vote
1answer
187 views
Apple doc's GCD Producer-Consumer solution wrong?
In the Migrating Away from Threads section of Apple's Concurrency Programming Guide, there is
Changing Producer-Consumer Implementations, which claims that the typical multistep pthread mutex + ...
1
vote
3answers
150 views
Obj-C design pattern : parallel task launcher
I currently have a shell script that process many images one after the other, with the help of GraphicsMagick. It works fine, all calculations are correct, everything works. (that's not a "simple" ...
1
vote
1answer
272 views
Does suspending a dispatch queue suspend it's target queue?
I want to create two serial queues A & B. Where queue B is a target of queue A. I want to queue up some blocks on B, and suspend it until i'm ready to execute them, however i want to continue ...
1
vote
2answers
203 views
How is dispatch_debug supposed to be used?
I am struggling with a deadlock in my GCD code. Then I saw this function dispatch_debug in the header file <dispatch/object.h>.
/*!
* @function dispatch_debug
*
* @abstract
* ...
1
vote
2answers
506 views
Using block or NSOperation for loading Image?
I need to know if it's better to use NSOperation or Block to load a large number of image into a UIScrollView? I create all the Imageview and positioning each UIImageView in the right position into ...
1
vote
1answer
2k views
comparison GCD vs. performSelectorInBackground: dispatch_async not in background
Grand Central Dispatch is great and reduces the amount of code but why I cannot run something on a background thread?
I have made a sample application to show what I mean (none of the commented work):
...
1
vote
1answer
587 views
Why NSURLConnection delegate methods don't get called, when using the global dispatch queue?
When I do the following:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, NULL), ^{
create NSURLRequest;
create NSURLConnectionDelegate;
create NSURLConnection;
start ...
1
vote
1answer
116 views
GCD obtaining queue name/label
How to get the current queue name? I mean queue label like com.example.myqueue. In Xcode 4 in debugger I can see just _block_invoke_1. Thanks.
1
vote
1answer
309 views
Premature exit from dispatch_asycn , Grand Central Dispatch
Lets say i am running some code in dispatch async. .. is there a way to terminate the thread it creates before it completes? like when the user clicks cancel
...
0
votes
1answer
59 views
How queues and threading work?
This is related to the Grand Central Dispatch API used in objective-c, with the following codes:
dispatch_queue_t downloadQueue = dispatch_queue_create("other queue", NULL);
...
0
votes
1answer
59 views
Dispatch Queues with Multiple Methods ? iPhone
I am trying to learn more about dispatch queues. If I put three methods in a dispatch queue as in the code below, do they execute one after the other or all at once ?
dispatch_queue_t queue = ...
0
votes
2answers
52 views
Cocoa-Touch – Guidelines on what thread to perform GUI updates
I know as a general guideline you should always perform GUI updates on the main thread. But sometimes it's not that obvious. E.g where should I perform the calls:
setBadgeValue: of a UITabBarItem?
...
0
votes
2answers
247 views
NSOperationQueue vs GCD
In what cases would you prefer to use NSOperationQueue over GCD? From my limited experience of these two, I take it that with NSOperationQueue you basically have control over how many concurrent ...
0
votes
2answers
103 views
dispatch_async call in applicationDidFinishLaunchWithOptions not behaving the way I would expect
I'm totally new to threading in iOS. I have a tab bar based application with tabs as follows:
Home Screen with buttons that only function to change selectedSegmentIndex
Info listing screen that has ...
0
votes
1answer
104 views
Weird dispatch_async memory behavior
I have the following dispatch_async code:
dispatch_async(openGLESContextQueue, ^{
[(EAGLView *)self.view setFramebuffer];
// Replace the implementation of this method to do your own ...
0
votes
2answers
87 views
GCD - executing methods on order after finishing others
I have a class that I call several times with different data.
That class, calls a web-service, parse it's response to NSDictionary, and save the data on Core Data.
The call of the web service and ...
0
votes
1answer
139 views
iOS - how to be notified when a thread (using GCD) ends it's job
I'm start to use GCD, and I need to know when a certain thread has ended it's job.
My code:
dispatch_queue_t registerDeviceQueue = dispatch_queue_create("RegisterDevice", NULL);
...
0
votes
2answers
65 views
How to use variables by reference in a code block?
I have a block that I submit to a queue and I only want the block to execute if a certain condition is true. It looks sort of like this:
bool hi = YES;
dispatch_async(queue, ^{
if (hi == YES)
...
0
votes
1answer
158 views
Task queue on Android like in GCD on iOS?
Is there such a thing as task queue on Android? I know that it can be written by hand but is there a ready to use library for that?
0
votes
1answer
299 views
How to run async operations within a grand central dispatch operation?
I have a queue of jobs that need to be processed, the queue is periodically kicked by a timer but also by calling threads when a new job is added to the queue.
When the queue is kicked I want to ...
0
votes
2answers
116 views
Grand Central Dispatch for Visual Basic?
In Mac OS X I can take advantage of more than 1 core using GCD (Grand Central Dispatch). What is the equivalent for a Visual Basic program?
0
votes
2answers
294 views
real time asynchronous tasks with cocoa
im making a soap client, and i need to do some time-based and priority operations.. for example.. i need to process every 200msec the call x, every 2 seconds the call y, and aleatory call z, that ...
0
votes
3answers
156 views
Can I assume that blocks scheduled to run on a serial queue will all run on the same thread?
I'm building an app for Mac OS 10.6 that will use OpenGL. I'd like to offshore the rendering to a secondary dispatch queue (instead of the main thread).
From what I understand, I need to use a ...
0
votes
0answers
113 views
How to check status of multiple custom UIViews updating in a background thread?
I have a view that consists of many instances of a custom UIView. The drawRect of this view is pretty slow (and I have to update them all when one changes), so I have implemented a progress indicator ...
0
votes
2answers
607 views
problem CLLocation manager updates from background thread
I'm launching a localization request using Grand Central Dispatch :
- (void) findGroceriesNearMe {
dispatch_queue_t downloadQueue = dispatch_queue_create("Groceries downloader", NULL);
...