Dispatch Groups

  • Dispatch Groups are objects that allow several tasks to be grouped for later joining. Tasks can be added to a queue as a member of a group, and then the client can use the group object to wait until all of the tasks in that group have completed.

https://en.wikipedia.org/wiki/Grand_Central_Dispatch

原文地址:https://www.cnblogs.com/feng9exe/p/8368179.html