GCD group,

Source: Internet
Author: User

GCD group,

Asynchronous intra-group requests compete for resources with events executed in an out-group order.

1) create a group

Dispatch_group_t group = dispatch_group_create ();

 

2) in-group asynchronous ST1, DISPATCH_QUEUE_PRIORITY_DEFAULT is the default priority.

Dispatch_group_async (group, dispatch_get_global_queue (DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^ {// do something 1 });

 

3) in-group asynchronous ST2, DISPATCH_QUEUE_PRIORITY_DEFAULT is the default priority.

Dispatch_group_async (group, dispatch_get_global_queue (DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^ {// do something 2 });

 

4) group notifications to obtain the main thread. This is the end of all asynchronous operations in the group.

Dispatch_group_policy (group, dispatch_get_main_queue (), ^ {// do something} after all groups are completed });

 

 

5) ST3 outside the group

// Do something 3

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.