我有如下的线程池配置文件:
<threadPoolProfile id="myThrottler"
poolSize="5"
maxPoolSize="20"
maxQueueSize="1000"
rejectedPolicy="CallerRuns"/>
我在路线中使用此线程池:
<route>
<from uri="stream:in"/>
<throttle timePeriodMillis="2000" asyncDelayed="true" executorServiceRef="myThrottler">
<constant>5</constant>
</throttle>
<log message="${threadName}"/>
</route>
我可以通过<log message="${threadName}"/>
我可以在线程池中使用队列大小吗?
答案 0 :(得分:1)