Clarified that the Future is in the Scala Standard Library. See #2314
This commit is contained in:
parent
217a9c2cf9
commit
6a23ff6add
2 changed files with 4 additions and 4 deletions
|
|
@ -6,8 +6,8 @@ Futures (Java)
|
|||
Introduction
|
||||
------------
|
||||
|
||||
In Scala, a `Future <http://en.wikipedia.org/wiki/Futures_and_promises>`_ is a data structure used
|
||||
to retrieve the result of some concurrent operation. This result can be accessed synchronously (blocking)
|
||||
In the Scala Standard Library, a `Future <http://en.wikipedia.org/wiki/Futures_and_promises>`_ is a data structure
|
||||
used to retrieve the result of some concurrent operation. This result can be accessed synchronously (blocking)
|
||||
or asynchronously (non-blocking). To be able to use this from Java, Akka provides a java friendly interface
|
||||
in ``akka.dispatch.Futures``.
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@ Futures (Scala)
|
|||
Introduction
|
||||
------------
|
||||
|
||||
In Scala, a `Future <http://en.wikipedia.org/wiki/Futures_and_promises>`_ is a data structure used to
|
||||
retrieve the result of some concurrent operation. This result can be accessed synchronously (blocking)
|
||||
In the Scala Standard Library, a `Future <http://en.wikipedia.org/wiki/Futures_and_promises>`_ is a data structure
|
||||
used to retrieve the result of some concurrent operation. This result can be accessed synchronously (blocking)
|
||||
or asynchronously (non-blocking).
|
||||
|
||||
Execution Contexts
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue