Skip to content

Instantly share code, notes, and snippets.

@shoheiyokoyama
Last active May 6, 2017 07:46
Show Gist options
  • Save shoheiyokoyama/32c985bbcfe70cdc2622b9b76feaa92b to your computer and use it in GitHub Desktop.
Save shoheiyokoyama/32c985bbcfe70cdc2622b9b76feaa92b to your computer and use it in GitHub Desktop.
DispatchWorkItem perform
let workItem = DispatchWorkItem {
sleep(1)
print("done")
}
workItem.perform() // Execute synchronously
print("after perfrom")
//done
//after perfrom
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment