}
/**
- * The pool readiness boolean status.
- * @returns The pool readiness status.
+ * Whether the pool is ready or not.
+ * @returns The pool readiness boolean status.
*/
private get ready (): boolean {
if (this.empty) {
}
/**
- * The pool emptiness boolean status.
- * @returns The pool emptiness status.
+ * Whether the pool is empty or not.
+ * @returns The pool emptiness boolean status.
*/
protected get empty (): boolean {
return this.minimumNumberOfWorkers === 0 && this.workerNodes.length === 0
/**
* Whether the pool is full or not.
- * @returns The pool filling boolean status.
+ * @returns The pool fullness boolean status.
*/
protected get full (): boolean {
return (
/**
* Whether the pool is busy or not.
- *
- * The pool busyness boolean status.
+ * @returns The pool busyness boolean status.
*/
protected abstract get busy (): boolean