本站首页    管理页面    写新日志    退出


«January 2026»
123
45678910
11121314151617
18192021222324
25262728293031


公告
本博客在此声明所有文章均为转摘,只做资料收集使用。并无其他商业用途。

我的分类(专题)

日志更新

最新评论

留言板

链接

Blog信息
blog名称:
日志总数:210
评论数量:205
留言数量:-19
访问次数:932169
建立时间:2007年5月10日




[J2SE相关]JDK1.5新特性--java.util.concurrent ExecutorCompletionService(6)
文章收藏,  网上资源,  软件技术,  电脑与网络

李小白 发表于 2007/7/19 9:58:00

lhwork 发表于 2006-12-11 11:09:19 考虑以下场景:浏览网页时,浏览器了5个线程下载网页中的图片文件,由于图片大小、网站访问速度等诸多因素的影响,完成图片下载的时间就会有很大的不同。如果先下载完成的图片就会被先显示到界面上,反之,后下载的图片就后显示。 Java的并发库的CompletionService可以满足这种场景要求。该接口有两个重要方法:submit()和take()。submit用于提交一个runnable或者callable,一般会提交给一个线程池处理;而take就是取出已经执行完毕runnable或者callable实例的Future对象,如果没有满足要求的,就等待了。 CompletionService还有一个对应的方法poll,该方法与take类似,只是不会等待,如果没有满足要求,就返回null对象。 package concurrent;import java.util.concurrent.Callable;import java.util.concurrent.CompletionService;import java.util.concurrent.ExecutionException;import java.util.concurrent.ExecutorCompletionService;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;import java.util.concurrent.Future;public class TestCompletionService {  public static void main(String[] args) throws InterruptedException,      ExecutionException {    ExecutorService exec = Executors.newFixedThreadPool(10);    CompletionService<String> serv =       new ExecutorCompletionService<String>(exec);    for (int index = 0; index < 5; index++) {      final int NO = index;      Callable<String> downImg = new Callable<String>() {        public String call() throws Exception {          Thread.sleep((long) (Math.random() * 10000));          return "Downloaded Image " + NO;        }      };      serv.submit(downImg);    }    Thread.sleep(1000 * 2);    System.out.println("Show web content");    for (int index = 0; index < 5; index++) {      Future<String> task = serv.take();      String img = task.get();      System.out.println(img);    }    System.out.println("End");    // 关闭线程池    exec.shutdown();  }} 运行结果:Show web contentDownloaded Image 1Downloaded Image 2Downloaded Image 4Downloaded Image 0Downloaded Image 3End


阅读全文(2016) | 回复(0) | 编辑 | 精华
 



发表评论:
昵称:
密码:
主页:
标题:
验证码:  (不区分大小写,请仔细填写,输错需重写评论内容!)



站点首页 | 联系我们 | 博客注册 | 博客登陆

Sponsored By W3CHINA
W3CHINA Blog 0.8 Processed in 0.629 second(s), page refreshed 144807319 times.
《全国人大常委会关于维护互联网安全的决定》  《计算机信息网络国际联网安全保护管理办法》
苏ICP备05006046号