The Threaded class

(PECL pthreads >= 2.0.0)

Giriş

Threaded objects form the basis of pthreads ability to execute user code in parallel; they expose synchronization methods and various useful interfaces.

Threaded objects, most importantly, provide implicit safety for the programmer; all operations on the object scope are safe.

Sınıf Sözdizimi

Threaded implements Collectable , Traversable , Countable , ArrayAccess {
/* Yöntemler */
public chunk ( int $size , bool $preserve ) : array
public count ( void ) : int
public extend ( string $class ) : bool
public from ( Closure $run [, Closure $construct [, array $args ]] ) : Threaded
public getTerminationInfo ( void ) : array
public isRunning ( void ) : bool
public isTerminated ( void ) : bool
public isWaiting ( void ) : bool
public lock ( void ) : bool
public merge ( mixed $from [, bool $overwrite ] ) : bool
public notify ( void ) : bool
public notifyOne ( void ) : bool
public pop ( void ) : bool
public run ( void ) : void
public shift ( void ) : mixed
public synchronized ( Closure $block [, mixed $... ] ) : mixed
public unlock ( void ) : bool
public wait ([ int $timeout ] ) : bool
}

İçindekiler