Skip to content

lepsHub/iOSConcurrency

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

iOSConcurrency

DispatchQueue Basically allow you to submit code execution into either main queue or background queue

Serial vs. Concurrent

Serial Queue is first and first out principal, In other words You can only do things in order one at the time. Once something happens or starts happening that task must finish before the next thing in that queue can happen.

Concurrent Queue use paraleleysm so we can concurrently do task at the same time, but not guarantee that every task it’s going to start or end at the same time.

Sync vs. Async Sync queue it’s going to block the thread until the task is completed.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages