Last active
May 16, 2019 10:26
-
-
Save aybekckaya/b666ca14874787201976f246b2a4609d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let group:DispatchGroup = DispatchGroup() | |
| group.enter() // entryCount = 1 | |
| iAmLongRunningFunc { | |
| group.leave() // entryCount = 0 | |
| } | |
| group.enter() // entryCount = 1 | |
| iAmLongRunningFunc { | |
| group.leave() // entryCount = 0 | |
| } | |
| group.notify(queue: DispatchQueue.main) { | |
| // if entryCount is 0 , then you get notified. | |
| print("All tasks completed . Get rest") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment