The following parameters can be used to customize the behavior of this class:
7677787980818283848586
public HttpParams getParams() { return this.params; } private void execute(final NHttpClientHandler clientHandler) throws IOException { IOEventDispatch ioEventDispatch = new SSLClientIOEventDispatch( clientHandler, this.sslcontext, this.params); this.ioReactor.execute(ioEventDispatch);
101102103104105106107108109110111
new DefaultConnectionReuseStrategy(), params); handler.setEventListener(new EventLogger()); final IOEventDispatch ioEventDispatch = new SSLClientIOEventDispatch( handler, sslcontext, params); Thread t = new Thread(new Runnable() {
112113114115116117118119120121122
103104105106107108109110111112113
919293949596979899100101
public void setRequestCount(final RequestCount requestCount) { this.requestCount = requestCount; } private void execute(final NHttpClientHandler clientHandler) throws IOException { IOEventDispatch ioEventDispatch = new SSLClientIOEventDispatch( clientHandler, this.sslcontext, this.params); this.ioReactor.execute(ioEventDispatch);
8182838485868788899091
109110111112113114115116117118119
89909192939495
protected IOEventDispatch createIOEventDispatch( final NHttpClientHandler clientHandler, final SSLContext sslcontext, final HttpParams params) { return new SSLClientIOEventDispatch(clientHandler, sslcontext, params); }