VOOZH about

URL: https://www.javacodegeeks.com/2014/05/scala-for-comprehension-with-concurrently-running-futures.html

⇱ Scala for-comprehension with concurrently running futures


Can you tell what’s the difference between the following two? If yes, then you’re great and you don’t need to read further.

 
 
 
 
 
 
 
 

Version 1:

val milkFuture = future { getMilk() }
val flourFuture = future { getFlour() }

for {
 milk <- milkFuture
 flour <- flourFuture
} yield (milk + flour)

Version 2:

for {
 milk <- future { getMilk() }
 flour <- future { getFlour() }
} yield (milk + flour)

You are at least curious if you got here. The difference is that the two futures in version 1 (can possibly) run in parallel, but in version 2 they can not. Function getFlour() is executed only after getMilk() is completed.

In the first version both futures are created before they are used in the for-comprehension. Once they exists it’s only up to execution context when they run, but nothing prevents them to be executed. I am trying not to say that they for sure run in parallel becuase that depends on many factors like thread pool size, execution time, etc. But the point is that they can run in parallel.

The second version looks very similar, but the problem is that the “getFlour()” future is created only once the “getMilk()” future is already completed. Therefore the two futures can never run concurrently no matter what. Don’t forget that the for-comprehension is just a syntactic sugar for methods “map”, “flatMap” and “withFilter”. There’s no magic behind.

That’s all folks. Happy futures to you.

Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy

Thank you!

We will contact you soon.

👁 Photo of Rado Buransky
Rado Buransky
May 6th, 2014Last Updated: May 5th, 2014
0 107 1 minute read
Subscribe

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Back to top button
Close
wpDiscuz