Update README.md

This commit is contained in:
Jungpyo Hong 2021-04-30 02:06:31 -05:00 committed by GitHub
parent 8dd9a13baa
commit 043bf8e66b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,10 +192,13 @@ This extension makes JSON more structable
GCD(Grand Central Dispatch) is a low-level API for managing concurrent operations. It can help you improve your apps responsiveness by deferring computationally expensive tasks to the background.
### DispatchQueue
An object that manages the execution of tasks serially or concurrently on your app's main thread or on a background thread.
#### main
We can say main is a serial queue
#### global()
We can say global is a concurrent queue
### DispatchGroup