代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
线程池相关
作者:
嘉诚
/ 发布于
2017/2/21
/
776
package com.blankj.utilcode.utils; import java.util.Collection; import java.util.List; import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.ScheduledFuture; import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; /** * <pre> * author: Blankj * blog : http://blankj.com * time : 2016/8/25 * desc : 线程池相关工具类 * </pre> */ public class ThreadPoolUtils { private ThreadPoolUtils() { throw new UnsupportedOperationException("u can't instantiate me..."); } public enum Type { FixedThread, CachedThread, SingleThread, } private ExecutorService exec; private ScheduledExecutorService scheduleExec; /** * ThreadPoolUtils构造函数 * * @param type 线程池类型 * @param corePoolSize 只对Fixed和Scheduled线程池起效 */ public ThreadPoolUtils(Type type, int corePoolSize) { // 构造有定时功能的线程池 // ThreadPoolExecutor(corePoolSize, Integer.MAX_VALUE, 10L, TimeUnit.MILLISECONDS, new BlockingQueue<Runnable>) scheduleExec = Executors.newScheduledThreadPool(corePoolSize); switch (type) { case FixedThread: // 构造一个固定线程数目的线程池 // ThreadPoolExecutor(corePoolSize, corePoolSize, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<Runnable>()); exec = Executors.newFixedThreadPool(corePoolSize); break; case SingleThread: // 构造一个只支持一个线程的线程池,相当于newFixedThreadPool(1) // ThreadPoolExecutor(1, 1, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<Runnable>()) exec = Executors.newSingleThreadExecutor(); break; case CachedThread: // 构造一个缓冲功能的线程池 // ThreadPoolExecutor(0, Integer.MAX_VALUE, 60L, TimeUnit.SECONDS, new SynchronousQueue<Runnable>()); exec = Executors.newCachedThreadPool(); break; default: exec = scheduleExec; break; } } /** * 在未来某个时间执行给定的命令 * 该命令可能在新的线程、已入池的线程或者正调用的线程中执行,这由 Executor 实现决定。 * * @param command 命令 */ public void execute(Runnable command) { exec.execute(command); } /** * 在未来某个时间执行给定的命令链表 * 该命令可能在新的线程、已入池的线程或者正调用的线程中执行,这由 Executor 实现决定。 * * @param commands 命令链表 */ public void execute(List<Runnable> commands) { for (Runnable command : commands) { exec.execute(command); } } /** * 待以前提交的任务执行完毕后关闭线程池 * 启动一次顺序关闭,执行以前提交的任务,但不接受新任务。 * 如果已经关闭,则调用没有作用。 */ public void shutDown() { exec.shutdown(); } /** * 试图停止所有正在执行的活动任务 * 试图停止所有正在执行的活动任务,暂停处理正在等待的任务,并返回等待执行的任务列表。 * 无法保证能够停止正在处理的活动执行任务,但是会尽力尝试。 * * @return 等待执行的任务的列表 */ public List<Runnable> shutDownNow() { return exec.shutdownNow(); } /** * 判断线程池是否已关闭 * * @return {@code true}: 是{@code false}: 否 */ public boolean isShutDown() { return exec.isShutdown(); } /** * 关闭线程池后判断所有任务是否都已完成 * 注意,除非首先调用 shutdown 或 shutdownNow,否则 isTerminated 永不为 true。 * * @return {@code true}: 是{@code false}: 否 */ public boolean isTerminated() { return exec.isTerminated(); } /** * 请求关闭、发生超时或者当前线程中断 * 无论哪一个首先发生之后,都将导致阻塞,直到所有任务完成执行。 * * @param timeout 最长等待时间 * @param unit 时间单位 * @return {@code true}: 请求成功{@code false}: 请求超时 * @throws InterruptedException 终端异常 */ public boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedException { return exec.awaitTermination(timeout, unit); } /** * 提交一个Callable任务用于执行 * 如果想立即阻塞任务的等待,则可以使用{@code result = exec.submit(aCallable).get();}形式的构造。 * * @param task 任务 * @param <T> 泛型 * @return 表示任务等待完成的Future, 该Future的{@code get}方法在成功完成时将会返回该任务的结果。 */ public <T> Future<T> submit(Callable<T> task) { return exec.submit(task); } /** * 提交一个Runnable任务用于执行 * * @param task 任务 * @param result 返回的结果 * @param <T> 泛型 * @return 表示任务等待完成的Future, 该Future的{@code get}方法在成功完成时将会返回该任务的结果。 */ public <T> Future<T> submit(Runnable task, T result) { return exec.submit(task, result); } /** * 提交一个Runnable任务用于执行 * * @param task 任务 * @return 表示任务等待完成的Future, 该Future的{@code get}方法在成功完成时将会返回null结果。 */ public Future<?> submit(Runnable task) { return exec.submit(task); } /** * 执行给定的任务 * 当所有任务完成时,返回保持任务状态和结果的Future列表。 * 返回列表的所有元素的{@link Future#isDone}为{@code true}。 * 注意,可以正常地或通过抛出异常来终止已完成任务。 * 如果正在进行此操作时修改了给定的 collection,则此方法的结果是不确定的。 * * @param tasks 任务集合 * @param <T> 泛型 * @return 表示任务的 Future 列表,列表顺序与给定任务列表的迭代器所生成的顺序相同,每个任务都已完成。 * @throws InterruptedException 如果等待时发生中断,在这种情况下取消尚未完成的任务。 */ public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) throws InterruptedException { return exec.invokeAll(tasks); } /** * 执行给定的任务 * 当所有任务完成或超时期满时(无论哪个首先发生),返回保持任务状态和结果的Future列表。 * 返回列表的所有元素的{@link Future#isDone}为{@code true}。 * 一旦返回后,即取消尚未完成的任务。 * 注意,可以正常地或通过抛出异常来终止已完成任务。 * 如果此操作正在进行时修改了给定的 collection,则此方法的结果是不确定的。 * * @param tasks 任务集合 * @param timeout 最长等待时间 * @param unit 时间单位 * @param <T> 泛型 * @return 表示任务的 Future 列表,列表顺序与给定任务列表的迭代器所生成的顺序相同。如果操作未超时,则已完成所有任务。如果确实超时了,则某些任务尚未完成。 * @throws InterruptedException 如果等待时发生中断,在这种情况下取消尚未完成的任务 */ public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException { return exec.invokeAll(tasks, timeout, unit); } /** * 执行给定的任务 * 如果某个任务已成功完成(也就是未抛出异常),则返回其结果。 * 一旦正常或异常返回后,则取消尚未完成的任务。 * 如果此操作正在进行时修改了给定的collection,则此方法的结果是不确定的。 * * @param tasks 任务集合 * @param <T> 泛型 * @return 某个任务返回的结果 * @throws InterruptedException 如果等待时发生中断 * @throws ExecutionException 如果没有任务成功完成 */ public <T> T invokeAny(Collection<? extends Callable<T>> tasks) throws InterruptedException, ExecutionException { return exec.invokeAny(tasks); } /** * 执行给定的任务 * 如果在给定的超时期满前某个任务已成功完成(也就是未抛出异常),则返回其结果。 * 一旦正常或异常返回后,则取消尚未完成的任务。 * 如果此操作正在进行时修改了给定的collection,则此方法的结果是不确定的。 * * @param tasks 任务集合 * @param timeout 最长等待时间 * @param unit 时间单位 * @param <T> 泛型 * @return 某个任务返回的结果 * @throws InterruptedException 如果等待时发生中断 * @throws ExecutionException 如果没有任务成功完成 * @throws TimeoutException 如果在所有任务成功完成之前给定的超时期满 */ public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException { return exec.invokeAny(tasks, timeout, unit); } /** * 延迟执行Runnable命令 * * @param command 命令 * @param delay 延迟时间 * @param unit 单位 * @return 表示挂起任务完成的ScheduledFuture,并且其{@code get()}方法在完成后将返回{@code null} */ public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { return scheduleExec.schedule(command, delay, unit); } /** * 延迟执行Callable命令 * * @param callable 命令 * @param delay 延迟时间 * @param unit 时间单位 * @param <V> 泛型 * @return 可用于提取结果或取消的ScheduledFuture */ public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { return scheduleExec.schedule(callable, delay, unit); } /** * 延迟并循环执行命令 * * @param command 命令 * @param initialDelay 首次执行的延迟时间 * @param period 连续执行之间的周期 * @param unit 时间单位 * @return 表示挂起任务完成的ScheduledFuture,并且其{@code get()}方法在取消后将抛出异常 */ public ScheduledFuture<?> scheduleWithFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) { return scheduleExec.scheduleAtFixedRate(command, initialDelay, period, unit); } /** * 延迟并以固定休息时间循环执行命令 * * @param command 命令 * @param initialDelay 首次执行的延迟时间 * @param delay 每一次执行终止和下一次执行开始之间的延迟 * @param unit 时间单位 * @return 表示挂起任务完成的ScheduledFuture,并且其{@code get()}方法在取消后将抛出异常 */ public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) { return scheduleExec.scheduleWithFixedDelay(command, initialDelay, delay, unit); } }
试试其它关键字
线程池相关
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
嘉诚
贡献的其它代码
(
24
)
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
springboot应用部署shell脚本
.
利用ffmpeg将MP4文件切成ts和m3u8
.
判断字符串是否json格式
.
数组去重,记录数组元素角标
.
选字验证码
.
easyui-防止表单重复提交
.
单源最短路径算法Dijkstra算法
.
在Angular.js中的H5页面调用Web api时跨域问题处理
.
获取当前week、month、quarter的第一天/最后一天
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3