web/lib/Zend/Amf/Value/MessageHeader.php
changeset 64 162c1de6545a
parent 19 1c2f13fd785c
child 68 ecaf28ffe26e
equal deleted inserted replaced
63:5b37998e522e 64:162c1de6545a
       
     1 <?php
       
     2 /**
       
     3  * Zend Framework
       
     4  *
       
     5  * LICENSE
       
     6  *
       
     7  * This source file is subject to the new BSD license that is bundled
       
     8  * with this package in the file LICENSE.txt.
       
     9  * It is also available through the world-wide-web at this URL:
       
    10  * http://framework.zend.com/license/new-bsd
       
    11  * If you did not receive a copy of the license and are unable to
       
    12  * obtain it through the world-wide-web, please send an email
       
    13  * to license@zend.com so we can send you a copy immediately.
       
    14  *
       
    15  * @category   Zend
       
    16  * @package    Zend_Amf
       
    17  * @subpackage Value
       
    18  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
       
    19  * @license    http://framework.zend.com/license/new-bsd     New BSD License
       
    20  * @version    $Id: MessageHeader.php 20096 2010-01-06 02:05:09Z bkarwin $
       
    21  */
       
    22 
       
    23 /**
       
    24  * Message Headers provide context for the processing of the
       
    25  * the AMF Packet and all subsequent Messages.
       
    26  *
       
    27  * Multiple Message Headers may be included within an AMF Packet.
       
    28  *
       
    29  * @package    Zend_Amf
       
    30  * @subpackage Value
       
    31  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
       
    32  * @license    http://framework.zend.com/license/new-bsd     New BSD License
       
    33  */
       
    34 class Zend_Amf_Value_MessageHeader
       
    35 {
       
    36     /**
       
    37      * Name of the header
       
    38      *
       
    39      * @var string
       
    40      */
       
    41     public $name;
       
    42 
       
    43     /**
       
    44      * Flag if the data has to be parsed on return
       
    45      *
       
    46      * @var boolean
       
    47      */
       
    48     public $mustRead;
       
    49 
       
    50     /**
       
    51      * Length of the data field
       
    52      *
       
    53      * @var int
       
    54      */
       
    55     public $length;
       
    56 
       
    57     /**
       
    58      * Data sent with the header name
       
    59      *
       
    60      * @var mixed
       
    61      */
       
    62     public $data;
       
    63 
       
    64     /**
       
    65      * Used to create and store AMF Header data.
       
    66      *
       
    67      * @param String $name
       
    68      * @param Boolean $mustRead
       
    69      * @param misc $content
       
    70      * @param integer $length
       
    71      */
       
    72     public function __construct($name, $mustRead, $data, $length=null)
       
    73     {
       
    74         $this->name     = $name;
       
    75         $this->mustRead = (bool) $mustRead;
       
    76         $this->data     = $data;
       
    77         if (null !== $length) {
       
    78             $this->length = (int) $length;
       
    79         }
       
    80     }
       
    81 }