In NioProcessor .java you got the following select implementation :
@Override
protected boolean select(int timeout) throws Exception {
return selector.select(1000) > 0;
}The hard-coded 1 sec value smell fishy, it's normal ? if so I think I'll place a comment for indicate it's not a mistake. Julien
