6

I've used Mina and Netty, but now I'm in the market for a lightweight library that may also be used in Android. I prefer Nio or AsyncIo over standard io implementations.

Update 1
The lack of responses really makes me think I should write my own library. Right now I'm using raw NIO and its not a lot of fun.

Paul Gregoire
  • 9,350
  • 11
  • 56
  • 128

3 Answers3

0

You might try using some pieces from Jetty as suggested in this email. I really like Jetty because it's small, self contained, and you can use some or all of it flexibly.

Spike Gronim
  • 6,038
  • 19
  • 21
0

Since this seems to be dead on arrival, I'll answer it by saying my custom IO library will be the best.

Paul Gregoire
  • 9,350
  • 11
  • 56
  • 128
0

To answer your question, there is no one size fits all async library. Netty and Mina might be the closest to such a thing, but most projects may still have to contain some pure NIO/ASYNCIO customized solutions.

I maintain you are on the right track. The more experience you have with low-level NIO/ASYNCIO the more you will appreciate and be able to get the most out of the somewhat-less-low-level Netty.

Dominic Cerisano
  • 2,789
  • 25
  • 41