Created
July 28, 2016 19:47
-
-
Save malcommac/bbd72cbc21f1ab2850e7661a2d655571 to your computer and use it in GitHub Desktop.
Chain Task with ThenAsync and use the result of a task
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
| downloadImage(imgURL, in: .Background).then { image in | |
| saveToDisk("myImage", image: image, in: .Background) }.then { url in | |
| print("Image from \(imgURL) is now saved in \(url)") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment