| Category | Zend |
| Package | Zend_Queue |
| Subpackage | Message |
| Copyright | Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com) |
| License | http://framework.zend.com/license/new-bsd New BSD License |
| Category | Zend |
| Package | Zend_Queue |
| Subpackage | Message |
| Copyright | Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com) |
| License | http://framework.zend.com/license/new-bsd New BSD License |
| # $_connected | Connected is true if we have a reference to a live |
| # $_data | The data for the queue message |
| # $_queue | Zend_Queue parent class or instance |
| # $_queueClass | Name of the class of the Zend_Queue |
| + __construct() | Constructor |
| + __get() | Retrieve message field value |
| + __isset() | Test existence of message field |
| + __set() | Set message field value |
| + __sleep() | Store queue and data in serialized object |
| + __wakeup() | Setup to do on wakeup. |
| + getQueue() | Returns the queue object, or null if this is disconnected message |
| + getQueueClass() | Query the class name of the Queue object for which this |
| + setFromArray() | Sets all data in the row from an array |
| + setQueue() | Set the queue object, to re-establish a live connection |
| + toArray() | Returns the column/value data as an array |
protected $_connected = trueprotected $_data = array()protected $_queue = nullZend_Queue parent class or instanceZend_Queueprotected $_queueClass = nullZend_Queue
public function __construct( |
array $options = array())
|
public function __get( |
$key)
|
string $key |
The user-specified key name. |
Zend_Queue_Exception if the $key is not a column in the message.
public function __isset( |
$key)
|
string $key |
The column key. |
public function __set( |
$key)
|
string $key |
The message key. |
mixed $value |
The value for the property. |
Zend_Queue_Exception
public function __sleep( |
)
|
public function __wakeup( |
)
|
public function getQueue( |
)
|
Zend_Queue|null
public function getQueueClass( |
)
|
public function setFromArray( |
array $data)
|
array $data |
Zend_Queue_Message Provides a fluent interface
public function setQueue( |
)
|
|
public function toArray( |
)
|