Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

stackable(3) [php man page]

STACKABLE(3)								 1							      STACKABLE(3)

The Stackable class

INTRODUCTION
Stackables are tasks that are executed by Worker threads. You can synchronize with, read, and write Stackable objects before, after and during their execution. CLASS SYNOPSIS
Stackable Stackable Methods o finalpublic boolean Stackable::chunk (long $size, boolean $preserve) o finalpublic boolean Stackable::isRunning (void ) o finalpublic boolean Stackable::isTerminated (void ) o finalpublic boolean Stackable::isWaiting (void ) o finalpublic boolean Stackable::lock (void ) o finalpublic boolean Stackable::merge (mixed $from, [mixed $overwrite]) o finalpublic boolean Stackable::notify (void ) o finalpublic boolean Stackable::pop (void ) o abstractpublic void Stackable::run (void ) o finalpublic boolean Stackable::shift (void ) o finalpublic mixed Stackable::synchronized (Closure $block, [mixed $...]) o finalpublic boolean Stackable::unlock (void ) o finalpublic boolean Stackable::wait ([string $timeout]) PHP Documentation Group STACKABLE(3)

Check Out this Related Man Page

COLLECTABLE(3)								 1							    COLLECTABLE(3)

The Collectable class

INTRODUCTION
Represents a garbage-collectable object. Collectable objects are intended to be used by the Pool class, replacing Threaded objects as the unit of work. They provide methods to set and detect the collectability of an object. CLASS SYNOPSIS
Collectable Collectableextends Threaded Methods o public bool Collectable::isGarbage (void ) o public void Collectable::setGarbage (void ) Inherited methods o public array Threaded::chunk (integer $size, boolean $preserve) o public integer Threaded::count (void ) o public bool Threaded::extend (string $class) o public Threaded Threaded::from (Closure $run, [Closure $construct], [array $args]) o public array Threaded::getTerminationInfo (void ) o public boolean Threaded::isRunning (void ) o public boolean Threaded::isTerminated (void ) o public boolean Threaded::isWaiting (void ) o public boolean Threaded::lock (void ) o public boolean Threaded::merge (mixed $from, [bool $overwrite]) o public boolean Threaded::notify (void ) o public boolean Threaded::pop (void ) o public void Threaded::run (void ) o public mixed Threaded::shift (void ) o public mixed Threaded::synchronized (Closure $block, [mixed $...]) o public boolean Threaded::unlock (void ) o public boolean Threaded::wait ([integer $timeout]) PHP Documentation Group COLLECTABLE(3)
Man Page