mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-02-08 02:59:14 +00:00
- Added a thread pool executor, that combines cached and fixed size thread pooling. It behaves like a cached thread pool in that it reuses exising threads and removes idle threads after a timeout, limits the maximum number of threads in the pool, but queue additional request instead of rejecting them. - changed existing code to use the new thread pool instead of a fixed-size thread pool in all places that are configured with a client thread pool size.