Pool::resize PHP Method

resize() public method

Resize the Pool
public resize ( integer $size )
$size integer The maximum number of Workers this Pool can create
    public function resize($size)
    {
    }

Usage Example

Exemplo n.º 1
0
 public function increaseSize($newSize)
 {
     $this->size = $newSize;
     $this->pool->resize($newSize);
 }