Hi
You can plugin your own thread pool factory where you can control how
thread pools (ExecutorService) are created and how these thread pools
create threads,
where you can do the before / after thread thingy.
However what is your use-case for doing this?
On Wed, Mar 10, 2021 at 2:06 PM Narsi
Hi,
I have a executorservice build from threadpoolbuilder.
public ExecutorService jobThreadPool() throws Exception {
return new
ThreadPoolBuilder(getContext()).poolSize(50).maxPoolSize(500).keepAliveTime(180).build("jobThread");
}
I would like to set thread before executing the task, just l
Hi Team,
We have created a simple camel route -
@Override@Override public void configure() throws Exception {
from("file://C:/in/?fileName=Input_UTF8.txt") .process(exchange ->
{ System.out.println("Headers after in: "+
exchange.getIn().getHeaders()); }
) .onCompletion()
The Camel PMC is pleased to announce the release of Apache Camel 3.7.3.
Apache Camel is an open source integration framework that empowers you
to quickly and easily integrate various systems consuming or producing
data.
This release is a patch release for the LTS 3.7.x branch that contains
36 bug