Hi, In my client implementation, I set manual threading model, and insert executorFilter() in my socketConnector config. On certain condition, in my handler, I will block in 'ArrayBlockingQueue'. during this situation, I don't see IoProcessor creating a new handler thread to process a new message coming from server. I can see the processor receive the new message coming from server on LoggingFilter.
If the blocking code is commented out, the new handler thread will be created. Is IoHandler should only run on one thread? Did I do something wrong? Thanks,
