-
1. Re: Usage of Timers in JBM 2
jmesnil Jul 10, 2009 5:08 AM (in response to timfox)I'll rewrite the 2 http timer tasks (one used in NettyConnector, the other in Netty Acceptor) to use our scheduled thread pools instead of timers.
I'll update our remoting SPI to pass a ScheduledExecutorService for the scheduled thread pool when creating a connector/acceptor in addition to the regular thread pool -
2. Re: Usage of Timers in JBM 2
jmesnil Jul 10, 2009 9:46 AM (in response to timfox)I've removed the 2 TimerTasks used by Netty HTTP code (in r7558).
I'll soon commit the removal of 2 other TimerTasks in MessageCounterManager and ResourceManager. Both will also be replaced by Runnabled executed by JBM scheduled thread pool.
There remains 2 TimerTasks:
* 1 in JBMBootstrapServer to check if there is a STOP_ME file and shutdown the server in that case
* 1 in TimedBuffer
The one in JBMBootstraspServer will stay.
I'm not sure for the one in TimedBuffer. I guess we could also use the global scheduled thread pool for this one but the asyncio code already defines its own thread pools (in AIOSequentialFileFactory). Should it also define its own scheduled executor service or can it use the global one?
Clebert, could you comment on this one? -
3. Re: Usage of Timers in JBM 2
timfox Jul 10, 2009 10:07 AM (in response to timfox)The one in TimedBuffer is just for rate logging and wouldn't normally get instantiated so don't worry about it.