Method |
Description |
|
getCreatorId ( ) : integer |
Will return the identity of the Thread that created the referenced Thread |
|
getCurrentThread ( ) : static |
Will return the instance of currently executing thread |
|
getCurrentThreadId ( ) : integer |
Will return the identity of the currently executing thread |
|
getThreadId ( ) : integer |
Will return the identity of the referenced Thread |
|
isJoined ( ) : boolean |
Tell if the referenced Thread has been joined by another context |
|
isStarted ( ) : boolean |
Tell if the referenced Thread has been started |
|
join ( ) : boolean |
Causes the calling context to wait for the referenced Thread to finish executing |
|
start ( integer $options = PTHREADS_INHERIT_ALL ) : boolean |
Will start a new Thread to execute the implemented run method |
|