The Thread class
(PECL pthreads >= 0.34)
Introduction
An implementation of a Thread should extend this declaration, implementing the run method. When the start method of that object is called, the run method code will be executed in separate Thread.
Class synopsis
Thread
{
/* Methods */
}Table of Contents
- Thread::getCreatorId — Identification
- Thread::getThreadId — Identification
- Thread::isJoined — State Detection
- Thread::isRunning — State Detection
- Thread::isStarted — State Detection
- Thread::isTerminated — State Detection
- Thread::isWaiting — State Detection
- Thread::join — Synchronization
- Thread::lock — Synchronization
- Thread::notify — Synchronization
- Thread::run — Execution
- Thread::start — Execution
- Thread::synchronized — Synchronization
- Thread::unlock — Synchronization
- Thread::wait — Synchronization
There are no user contributed notes for this page.
