* {@link HttpTransportOptions}.
*/
public HttpChannel(URL url, HttpTransportOptions transportOptions) {
m_url = url;
m_transportOptions = transportOptions;
m_codecCache = new CodecCache();
m_inBufferCache = new StreamBufferInPool(BUFFER_SIZE);
m_outBufferCache = new StreamBufferOutPool(BUFFER_SIZE);
}