val future1 = Future { myLongComputation() } va...
# announcements
f
val future1 = Future { myLongComputation() } val future2 = Future { myOtherLongComputation() } val future3 = for(value1 <- future1; value2 <- future2) yield value1 + value2