From 755f08b3242edeca87f8f3d500e970de097b7851 Mon Sep 17 00:00:00 2001 From: Alessandro Pio Ardizio Date: Tue, 21 Jan 2020 23:38:40 +0100 Subject: [PATCH] Update README.MD --- README.MD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.MD b/README.MD index 7bc3b55b..48d6a30f 100644 --- a/README.MD +++ b/README.MD @@ -20,8 +20,8 @@

Overview

Node pool contains two worker-threads pool implementations , you don' t have to deal with worker-threads complexity.
-The first implementation is a static thread pool , with a defined number of threads that are started at creation time .
-The second implementation is a dynamic thread pool with a number of threads started at creation time and other threads created when the load will increase ( with an upper limit ), the new created threads will be stopped after a threshold.
+The first implementation is a static thread pool , with a defined number of threads that are started at creation time and will be reused.
+The second implementation is a dynamic thread pool with a number of threads started at creation time ( these threads will be always active and reused) and other threads created when the load will increase ( with an upper limit ), the new created threads will be stopped after a configurable period of inactivity.
You have to implement your worker extending the ThreadWorker class

Installation

-- 2.34.1