* @param threadCount Number of threads to use for request processing.
*
* @return This builder.
*/
public HttpServerBuilder<I, O> withRequestProcessingThreads(int threadCount) {
return super.withEventExecutorGroup(new DefaultEventExecutorGroup(threadCount, new RxDefaultThreadFactory("rx-request-processor")));
}