Test: Verify that worker pool tasks usage are reset at worker choice strategy change...
[poolifier.git] / src / worker / abstract-worker.ts
index 9b170330fabe7ea7514733b4553aac535a2528c8..4aad8e62669335c3940ba3fb88cc08afda062eb3 100644 (file)
@@ -10,7 +10,7 @@ const DEFAULT_MAX_INACTIVE_TIME = 1000 * 60
 const DEFAULT_KILL_BEHAVIOR: KillBehavior = KillBehaviors.SOFT
 
 /**
- * Base class containing some shared logic for all poolifier workers.
+ * Base class that implements some shared logic for all poolifier workers.
  *
  * @template MainWorker Type of main worker.
  * @template Data Type of data this worker receives from pool's execution. This can only be serializable data.