
thread
文章平均质量分 85
iteye_20824
这个作者很懒,什么都没留下…
展开
-
并发相关网络资源
Future的作用:为任务的提交者和执行者之间提供通讯手段。维基百科并发控制专题http://en.wikipedia.org/wiki/Category:Concurrency_control维基百科并行计算专题http://en.wikipedia.org/wiki/Parallel_computing维基百科非阻塞同步专题http://en.wikipedia...2010-12-25 18:10:56 · 94 阅读 · 0 评论 -
ThreadPoolExecutor使用介绍
[code="java"]private static ExecutorService exec = new ThreadPoolExecutor(8, 8, 0L,TimeUnit.MILLISECONDS, new LinkedBlockingQueue(100000),new ThreadPoolExecutor.CallerRunsPolicy());[/code]...原创 2016-10-27 15:16:36 · 260 阅读 · 0 评论