Description
The NHttpClient.java example referenced from:
http://hc.apache.org/httpcomponents-core-ga/examples.html
uses an HttpParam object to set things like the TCP_NODELAY and other settings. However, with the NIO based core, those settings are not referenced. Those setting have to be set directly on the ConnectingIOReactor. (this COULD also be considered a bug in the ConnectingIOReactor, maybe it should accept an HttpParam object?)
In anycase, the example should be updated to reflect configuration that will actually work.