PHPDaemon\Thread\Collection::start PHP Method

start() public method

Start all collected threads
public start ( ) : void
return void
    public function start()
    {
        foreach ($this->threads as $thread) {
            $thread->start();
        }
    }