File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ languages: [ja]
11
11
12
12
## Introduction
13
13
14
- Futures provide a nice way to reason about performing many operations
15
- in parallel-- in an efficient and non-blocking way. The idea
16
- is simple, a [ Future] ( http://www.scala-lang.org/api/current/index.html#scala.concurrent.Future )
14
+ Futures provide a way to reason about performing many operations
15
+ in parallel-- in an efficient and non-blocking way.
16
+ A [ Future] ( http://www.scala-lang.org/api/current/index.html#scala.concurrent.Future )
17
17
is a sort of a placeholder object that you can create for a result that does not yet exist.
18
18
Generally, the result of the ` Future ` is computed concurrently and can be later collected.
19
19
Composing concurrent tasks in this way tends to result in faster, asynchronous, non-blocking parallel code.
You can’t perform that action at this time.
0 commit comments