Akka Futures: Using For Comprehensions

Table of contents
Reading Time: 3 minutes

In my previous post I discussed about composing Futures. I also discussed that Futures are monadic and they can be composed using map or flatmap. Since, for comprehension is just a sugar on top we can use it as well. Lets understand their usage in a bit more detail than my previous post.

Using the same example of direct use of Futures and using a timeTakingIdentity function. Code snippet below has two future creation and a function definition.

Now we need to run them in parallel. The way to do this is to construct a single Future out of future1 and future2 and collect the result from them.

Since Future is a Monad we have useful methods like map and flatMap to compose a new Future. The resulting Future can then be used for assembling result. Lets use just a map method and see what happens.

Using future1 first we can call map method on it. We can then use nested map method on future2. On the inner map method we can then sum result1 and result2. We expect this Future to help us getting sum of two results from timeTakingIdentityFunction.


Not surprisingly, what we get is a Future[Future[Int]]. Not entirely useful conciseness wise. We need a final future that is a Future of Int. This is why we use a flatMap. We can make it work using a flatMap on future1 and then a map on future2. Here is the code.

If we want, we can use this to get sum of two results from timeTakingIdentityFunction. Here is the complete code listing of an Application.

We made two calls to timeTakingIdentityFunction and got result in three seconds!!

But this is not a concise way to do things. Imagine there is a third future then our code will start looking a bit messy.

For this we use for expressions. It is a sugar on top and here is a concise code we can use.

You can compare how better it is!!

Now there is a common pitfall we can get into when composing futures. I did it too. Rule of the thumb is to create Futures before you get into composing them. For example the code below will run in nine seconds.

It is so because creation of future2 and future3 happens after first future completes. Not so hard figuring it out but a common error nonetheless 🙂

We did composing futures using map and flatMap. We also used for expressions and noticed they are so better. And we know now the rule of the thumb is to create them before we go about composing them.

2 thoughts on “Akka Futures: Using For Comprehensions3 min read

Comments are closed.

Discover more from Knoldus Blogs

Subscribe now to keep reading and get access to the full archive.

Continue reading