Zend Framework
1.12
|
Public Member Functions | |
__construct (Zend_Memory_Container_Movable $memContainer) | |
Object constructor. | |
__destruct () | |
Object destructor. | |
& | getRef () |
Get string value reference. | |
touch () | |
Signal, that value is updated by external code. | |
lock () | |
Lock object in memory. | |
unlock () | |
Unlock object. | |
isLocked () | |
Return true if object is locked. | |
__get ($property) | |
Get handler. | |
__set ($property, $value) | |
Set handler. | |
__construct | ( | Zend_Memory_Container_Movable | $memContainer | ) |
Object constructor.
Zend_Memory_Container_Movable | $memoryManager |
__destruct | ( | ) |
Object destructor.
__get | ( | $property | ) |
Get handler.
Loads object if necessary and moves it to the top of loaded objects list. Swaps objects from the bottom of loaded objects list, if necessary.
string | $property |
Zend_Memory_Exception |
__set | ( | $property, | |
$value | |||
) |
& getRef | ( | ) |
Get string value reference.
_Must_ be used for value access before PHP v 5.2 or _may_ be used for performance considerations
Implements Zend_Memory_Container_Interface.
isLocked | ( | ) |
lock | ( | ) |
Lock object in memory.
Implements Zend_Memory_Container_Interface.
touch | ( | ) |
Signal, that value is updated by external code.
Should be used together with getRef()
Implements Zend_Memory_Container_Interface.
unlock | ( | ) |
Unlock object.
Implements Zend_Memory_Container_Interface.