Skip to content

Instantly share code, notes, and snippets.

@tomaszperek
Created October 10, 2015 11:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomaszperek/c772cf36d9ee522d4099 to your computer and use it in GitHub Desktop.
Save tomaszperek/c772cf36d9ee522d4099 to your computer and use it in GitHub Desktop.
For comprehension with futures
val futureSum: Future[Int] = for {
a <- futureA
b <- futureB
c <- futureC
} yield a + b + c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment