ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CompletionService.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/CompletionService.java (file contents):
Revision 1.16 by jsr166, Sun Oct 21 06:14:11 2012 UTC vs.
Revision 1.17 by jsr166, Mon Nov 26 14:11:54 2012 UTC

# Line 12 | Line 12 | package java.util.concurrent;
12   * <tt>submit</tt> tasks for execution. Consumers <tt>take</tt>
13   * completed tasks and process their results in the order they
14   * complete.  A <tt>CompletionService</tt> can for example be used to
15 < * manage asynchronous IO, in which tasks that perform reads are
15 > * manage asynchronous I/O, in which tasks that perform reads are
16   * submitted in one part of a program or system, and then acted upon
17   * in a different part of the program when the reads complete,
18   * possibly in a different order than they were requested.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines