By Alvin Alexander. Last updated: August 21, 2017
In the Scala Standard Library, a Future is a data structure used to retrieve the result of some concurrent operation. This result can be accessed synchronously (blocking) or asynchronously (non-blocking).
~ from the akka.io docs
(For more information, here’s my Scala Futures example.)