PHPDaemon\Thread\Collection::stop PHP 메소드

stop() 공개 메소드

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