Hello, I am using MINA 2.0 M6;
just wonder if there any way to use LinkedBlockingQueue of limited size with OrderedThreadPoolExecutor like in standard ThreadPoolExecutor (I mean workQueue)?
Even though OrderedThreadPoolExecutor extends ThreadPoolExecutor, seems it ignores the parent's workQueue (I tried to pass a queue to the parent's constructor).
My goal is to limit the number of threads in OrderedThreadPoolExecutor in critical situations (under high load), otherwise new threads are created constantly and I get OutOfMemory. So I think I could configure a small "corePoolSize" and a big "workQueue" to minimize CPU usage and context switching.
Thanks, Victor N
