Method |
Description |
|
addRef ( ) |
|
|
chunk ( integer $size, boolean $preserve = false ) : array |
Fetches a chunk of the objects properties table of the given size |
|
count ( ) |
|
|
delRef ( ) |
|
|
extend ( object $obj ) |
|
|
getRefCount ( ) : integer |
|
|
isGarbage ( ) : boolean |
|
|
isRunning ( ) : boolean |
Tell if the referenced object is executing |
|
isTerminated ( ) : boolean |
Tell if the referenced object exited, suffered fatal errors, or threw uncaught exceptions during execution |
|
merge ( mixed $from, boolean $overwrite = true ) : boolean |
Merges data into the current object |
|
notify ( ) : boolean |
Send notification to the referenced object |
|
notifyOne ( ) |
|
|
offsetExists ( $offset ) |
|
|
offsetGet ( $offset ) |
|
|
offsetSet ( $offset, $value ) |
|
|
offsetUnset ( $offset ) |
|
|
pop ( ) : mixed |
Pops an item from the objects property table |
|
run ( ) : void |
The programmer should always implement the run method for objects that are intended for execution. |
|
shift ( ) : mixed |
Shifts an item from the objects properties table |
|
synchronized ( Closure $function, mixed $args = null ) : mixed |
Executes the block while retaining the synchronization lock for the current context. |
|
wait ( integer $timeout ) : boolean |
Waits for notification from the Stackable |
|