自定义骆驼中的线程名称 [英] Customizing a name of a thread in camel

查看:75
本文介绍了自定义骆驼中的线程名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在Apache Camel中自定义特定组件的线程名?

How do I customise a thread name of a particular component in Apache Camel?

推荐答案

使用ExecutorService,您可以定义ThreadFactory,您可以在其中设置所需的线程名称.使用Java DSL,可以按照以下步骤进行操作:

With an ExecutorService you have the possibility to define a ThreadFactory where you may set the desired thread name. Using Java DSL this could be done as follows:

ThreadFactory threadFactory = new ThreadFactory() {
    @Override
    public Thread newThread(final Runnable r) {
        Thread thread = new Thread(r);
        thread.setName("My Thread Name");
        return thread;
    }
};
ExecutorService exe = Executors.newFixedThreadPool(3, threadFactory);
from("direct:start")
    .threads()
    .executorService(exe)
    .log("${body}");

这篇关于自定义骆驼中的线程名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆