BlockingWorkerPool

A worker pool implementation that isn't even a pool, but simply executes all request processing as soon as a socket is submitted, on the calling thread. It uses a single buffer and parser for all requests.

Inherited Members

From RequestWorkerPool

start
void start()

Starts the pool, so that it will be able to process requests.

submit
void submit(HttpServer server, Socket socket)

Submits a client socket to this pool for processing.

stop
void stop()

Stops the pool, so that no more requests may be processed.