I have searched a lot to find out how others have solved this problem, but unfortunately, I didn't find the answer to this specific question. I would really appreciate your help.
Here's a summary: I have two methods in my class, method1 and method2. I have to call an async function inside method1. Then the code keeps executing and reaches method2. But in method2, there are cases where I need to use the result of that async call in method1, so I need to make sure that the async call in method1 has finished before proceeding with the rest of method2.
I know one way is to use semaphores and the other way is to use completion blocks. But I want to do this in the most generic way because there will be other methods, similar to method2, which will again need to wait for the async call in method1 to complete before continuing execution. Also for the same reason, I cannot simply call the async function inside method2 itself and put the rest of method2 in its completion block.
Here's a rough idea of what I am trying to do. I would appreciate it if someone adds completionBlocks to this pseudocode so I can see a clear picture of how things would work. BTW, method1 and method2 (and all other methods in this class) are on the same thread (but not the main thread).
@implementation someClass
-(void)method1 {
for (each item in the ivar array) {
if (condition C is met on that item) {
some_independent_async_call(item, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(int result, int *someArray) {
if (result > 0) {
// The async call worked correctly, we will need someArray
}
else {
// We didn't get someArray that we wanted.
}
});
}
}
}
-(void)method2 {
// Select one item in the ivar array based on some criteria.
if (condition C is met on that item) {
// Wait for some_independent_async_call() in method1 to complete.
// Then use someArray in the rest of the code.
}
else {
// Simply continue the rest of the code.
}
}
@end
Update: I know I can signal a semaphore once the async call completes and I can wait for the same semaphore in method2, but I want to use a completion block instead because I think that would be more generic especially if there are other methods similar to method2 in this class. Can someone please add completion blocks to this code as I am having problems making that work?
Based off your code it looks like you have control over the asynchronous dispatch.
Instead of
some_independent_async_call
usedispatch_sync
, which will block execution on the current thread until the given block completesusing dispatch_sync in Grand Central Dispatch
However, if you do not have control over the asynchronous call and you are actually calling a method on an object which then goes and calls
dispatch_async
; you have no choice then to use a completion block, callback pattern or semaphore as you stated