We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example it'll never be done. It's stops with "A has been started" message. Please help me
- (void)abcde { NSOperationQueue *queue = [[NSOperationQueue alloc] init]; NSOperation *a = [RNConcurrentBlockOperation operationWithBlock: ^(RNCompletionBlock completion) { NSLog(@"A has been started"); NSOperationQueue *localQueue = [[NSOperationQueue alloc] init]; NSOperation *b = [RNConcurrentBlockOperation operationWithBlock: ^(RNCompletionBlock completion) { NSLog(@"B has been done"); completion(nil); }]; [localQueue addOperation:b]; [localQueue waitUntilAllOperationsAreFinished]; NSLog(@"A has been finished"); completion(nil); }]; [queue addOperation:a]; }
Any idea of manage embedded concurrent async tasks?
The text was updated successfully, but these errors were encountered:
Hey I'll take a look at this tonight and let you know!
Sorry, something went wrong.
No branches or pull requests
For example it'll never be done. It's stops with "A has been started" message. Please help me
Any idea of manage embedded concurrent async tasks?
The text was updated successfully, but these errors were encountered: