Try using AsynchronousSocketChannel
#282
Labels
kind:enhancement
New feature or request
kind:refactoring
Changing the code without changing the user-visible behavior
Currently, our socket code uses blocking read calls on a separate thread.
This could be migrated to
AsynchronousSocketChannel
that'sFuture
-based, and that would allow to make the code better, use fewer resources (no thread stack), and also maybe even fix the issues like #84.The text was updated successfully, but these errors were encountered: