Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
This class represents a Stomp Frame Interface
__toString(
)
:
DetailsfromFrame(
string $frame
)
:
$thisAccepts a frame and deconstructs the frame into its' component parts
DetailsgetAutoContentLength(
)
:
booleanGet the status of the auto content length
If AutoContentLength is true this code will automatically put the content-length header in, even if it is already set by the user.
This is done to make the message sending more reliable.
DetailsgetBody(
)
:
$thisReturn the body for this frame returns false if the body does not exist
DetailsgetCommand(
)
:
$thisReturn the command for this frame return false if the command does not exist
DetailsgetHeader(
string $header
)
:
$stringReturns a value for a header returns false if the header does not exist
DetailsgetHeaders(
)
:
arrayGet the headers
DetailssetAutoContentLength(
boolean $auto
)
:
$this;setAutoContentLength()
Set the value on or off.
DetailssetBody(
string|null $body
)
:
$thisSet the body for this frame returns false if the body does not exist
Set to null for no body.
DetailssetCommand(
$command
)
:
$thisSet the body for this frame returns false if the body does not exist
DetailssetHeader(
string $header, string $value
)
:
$thisReturns a value for a header returns false if the header does not exist
DetailssetHeaders(
array $headers
)
:
$thisSet the headers
Throws an exception if the array values are not strings.
DetailstoFrame(
)
:
stringTakes the current parameters and returns a Stomp Frame
Details