-
Notifications
You must be signed in to change notification settings - Fork 296
New issue
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
Question regarding implementation #200
Comments
Hi Michael, There's a section in the docs on how the dispatch group can help with testing. And you can use any dispatch queue, including a concurrent one to run the Thanks. |
Hi @shoumikhin , My point was, assuming u have a lot of nested Another point (out of curiosity ) u r always using dispatch with groups, what was the the benefit to use groups over just dispatch_async? I mean I dont see see and wait or notify for those groups later on |
@shoumikhin
What guarantee that "Should finish before then" will be done before "do I come here". |
Hi
I have looked through the code and was wondering about some parts of it, I would really appreciate if you could share some light
when creating a promise with the following code: link
dispatch_group_async(FBLPromise.dispatchGroup
? I mean whydispatch_group_async
what the purpose of groupes (I feel it like synchronizes the calls )work
will be executed after the calling codeThe text was updated successfully, but these errors were encountered: