Created
June 5, 2014 15:50
-
-
Save k0nserv/7807a28b38b5ef8a9bc4 to your computer and use it in GitHub Desktop.
Conccurency in swift?
This file contains 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
println("Before async") | |
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0) | |
, { | |
println("async") | |
}) | |
println("After async") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment