Comment on A Solution to CPU-intensive Tasks in IO LoopsparentComments−jamii14yThe disruptor is just a very efficient event loop. It doesn't prevent you from blocking the handling thread.−yxhuvud14yTrue, if you do blocking stuff in the handler instead of in the worker threads.
Comments
The disruptor is just a very efficient event loop. It doesn't prevent you from blocking the handling thread.
True, if you do blocking stuff in the handler instead of in the worker threads.