The Thread class
(PECL pthreads >= 2.0.0)
Einführung
When the start method of a Thread is invoked, the run method code will be executed in separate Thread, asynchronously.
After the run method is executed the Thread will exit immediately, it will be joined with the creating Thread at the appropriate time.
Warnung
Relying on the engine to determine when a Thread should join may cause undesirable behaviour; the programmer should be explicit, where possible.
Klassenbeschreibung
/* Methoden */
/* Geerbte Methoden */
}Inhaltsverzeichnis
- Thread::detach — Execution
- Thread::getCreatorId — Identification
- Thread::getCurrentThread — Identification
- Thread::getCurrentThreadId — Identification
- Thread::getThreadId — Identification
- Thread::globally — Execution
- Thread::isJoined — State Detection
- Thread::isStarted — State Detection
- Thread::join — Synchronization
- Thread::kill — Execution
- Thread::start — Execution