Skip to content

Instantly share code, notes, and snippets.

@Longhanks
Created January 1, 2018 20:10
Show Gist options
  • Save Longhanks/03a588364fd169c7bb5c2ca2cfc56318 to your computer and use it in GitHub Desktop.
Save Longhanks/03a588364fd169c7bb5c2ca2cfc56318 to your computer and use it in GitHub Desktop.
import Dispatch
let semaphore = DispatchSemaphore(value: 0)
DispatchQueue.global().asyncAfter(deadline: .now() + 2.0) {
print("I am a delayed call!")
semaphore.signal()
}
semaphore.wait()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment