What options for async io (socket-based) are there in java other then java.nio? Also does java.nio use threads in the backround (as I think .NET's async-socket-library does, maybe it's been changed) or is it "true" async io using a proper select call?
|
3
|
|||
|
|
|
Java's NIO package (as of Java6), provides support for non-blocking I/O only, via Selectors. Java7 is hopefully going to ship with NIO.2, which includes asynchronous I/O support. Today, your best bet is to make use of a framework. ARMistice mentioned Mina. Here are some others.
Now, with regard to your question about threads, NIO Selectors do not use threads for non-blocking I/O. In JDK6 they use select() under Windows and the epoll facility on newer Linux kernels. For asynchronous I/O, threading details depend on the framework. |
||
|
|
|
|
||
|
|
|
|
If you are interested in using it for Network Stuff. A really good choice is: Have a look there its easy to use and very powerfull. |
||
|
|
|
|
Another suggestion in regards to libs would be Naga (http://naga.googlecode.com). It is a bit less like a framework and more like a library. It tries to look more like the ordinary java sockets, if that is your cup of tea. It's minimalistic compared to Grizzly, Mina and Netty. |
||
|
|
|
|
You might find this discussion interesting http://www.artima.com/lejava/articles/more_new_io.html Out of interest, what is your use case for asynchronous IO? |
||
|
|
