pht\Thread::join

(PECL pht >= 0.0.1)

pht\Thread::joinJoins a thread

Opis

public pht\Thread::join ( void ) : void

This method will join the spawned thread (though it will first wait for that thread's internal task queue to finish). As a matter of good practice, threads should always be joined. Not joining a thread may lead to undefined behaviour.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

No return value.

Przykłady

Przykład #1 Joining a thread

<?php

use pht\Thread;

$thread = new Thread();

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

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top