GoLang pht\Thread::start

request it (271)
GoLang replacement for PHP's pht\Thread::start [edit | history]



Do you know a GoLang replacement for PHP's pht\Thread::start? Write it!

PHP pht\Thread::start

PHP original manual for pht\Thread::start [ show | php.net ]

pht\Thread::start

(PECL pht >= 0.0.1)

pht\Thread::startStarts the new thread

Description

public void pht\Thread::start ( void )

This will cause a new thread to be spawned for the associated pht\Thread object, where its internal task queue will begin to be processed.

Parameters

This function has no parameters.

Return Values

No return value.

Examples

Example #1 Starting a new thread

<?php

use pht\Thread;

$thread = new Thread();

$thread->start();
$thread->join();