java多线程创建方式

2022/1/26 20:09:40

本文主要是介绍java多线程创建方式,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

    int corePoolSize = 20;
    int maximumPoolSize = 40;
    long keepAliveTime = 20;
    TimeUnit unit = TimeUnit.SECONDS;
    BlockingQueue<Runnable> workQueue = new ArrayBlockingQueue<>(5000);
    ThreadPoolExecutor executor = new ThreadPoolExecutor(corePoolSize, maximumPoolSize, keepAliveTime, unit,
            workQueue);

    protected void process(Date data) {
        executor.execute(new Runnable() {
            @Override
            public void run() {
                try {
                    long start = new Date().getTime();
                    //实际处理的方法
            handle(data);
long end = new Date().getTime();
                    log.info("data key :" + data.getKey() + ",time:" + (end - start) + "ms" + ",workQueue size" + workQueue.remainingCapacity());
                    if (workQueue.remainingCapacity() < 500) {
                        log.error("work queue nearly full :data key:" + data.getKey() + ",time:" + (end - start) + "ms" + ",workQueue size" + workQueue.remainingCapacity());
                    }
                } catch (Exception e) {
                    log.error("process error", e);
                }
            }
        });
    }

1. 传入的数据Data,要设置唯一key,在日志中打印key

2.剩余线程数不足时,打印错误日志

3.handle(data)是实际的处理方法。



这篇关于java多线程创建方式的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程