PHPDaemon\Thread\Collection::stop PHP Method

stop() public method

Stop all collected threads
public stop ( $kill = false ) : void
return void
    public function stop($kill = false)
    {
        foreach ($this->threads as $thread) {
            $thread->stop($kill);
        }
    }