DistributingWorkerPool

The distributing worker pool is a request worker pool implementation that tries to distribute work evenly among its workers, with each worker keeping its own internal job queue.

class DistributingWorkerPool : RequestWorkerPool {}

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.