resize() public method

Resize the Pool
public resize ( integer $size )
$size integer The maximum number of Workers this Pool can create
Ejemplo n.º 1
0
 public function increaseSize($newSize)
 {
     $this->size = $newSize;
     $this->pool->resize($newSize);
 }