Re: Mina stop work cause by exception in OrderedThreadPoolExecutor.Worker.run()

2017-01-21 Thread Xu Congyuan
> my busy schedule to review your explaination. > > > I also have to do a small experiment to reproduce the issue. > > > Thanks for your patience ! > > > Le 17/01/2017 à 05:32, Xu Congyuan a écrit : > > Dear all, Hope you are doing well. > > > > Please k

Re: Mina stop work cause by exception in OrderedThreadPoolExecutor.Worker.run()

2017-01-16 Thread Xu Congyuan
Dear all, Hope you are doing well. Please kindly advise if the problem I found is on processing. Any informations , please feel free to let me know. 2017-01-13 9:12 GMT+08:00 Xu Congyuan <xcongy...@gmail.com>: > Thanks for reply. Sorry for not clear it. > Basically, we will ge

Re: Mina stop work cause by exception in OrderedThreadPoolExecutor.Worker.run()

2017-01-12 Thread Xu Congyuan
Thanks for reply. Sorry for not clear it. Basically, we will get the number of idleWorkers 0 or more than 0, if idleWorkers = 0, that's meaning no work is idle, we should add workers if it's necessary; if idleWorkers > 0 , that's meaning there are idle works, no necessary to add workers. Do I get

Mina stop work cause by exception in OrderedThreadPoolExecutor.Worker.run()

2017-01-11 Thread Xu Congyuan
I am using OrderedThreadPoolExecutor to handle expensive logical works.But found can't receive event on IoHandler. I worked through MINA source code , and found the issue . Look at the red code, when there is exception throws at runTasks(...), but we don't catch it, it will break the for loop,