mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
58 lines
1.3 KiB
PHP
58 lines
1.3 KiB
PHP
<?php
|
|
namespace PhpAmqpLib\Message;
|
|
|
|
use PhpAmqpLib\Wire\GenericContent;
|
|
|
|
/**
|
|
* A Message for use with the Channnel.basic_* methods.
|
|
*/
|
|
class AMQPMessage extends GenericContent
|
|
{
|
|
/** @var string */
|
|
public $body;
|
|
public $body_size;
|
|
public $is_truncated = false;
|
|
|
|
/** @var string */
|
|
public $content_encoding;
|
|
|
|
/** @var array */
|
|
protected static $propertyDefinitions = array(
|
|
'content_type' => 'shortstr',
|
|
'content_encoding' => 'shortstr',
|
|
'application_headers' => 'table_object',
|
|
'delivery_mode' => 'octet',
|
|
'priority' => 'octet',
|
|
'correlation_id' => 'shortstr',
|
|
'reply_to' => 'shortstr',
|
|
'expiration' => 'shortstr',
|
|
'message_id' => 'shortstr',
|
|
'timestamp' => 'timestamp',
|
|
'type' => 'shortstr',
|
|
'user_id' => 'shortstr',
|
|
'app_id' => 'shortstr',
|
|
'cluster_id' => 'shortstr',
|
|
);
|
|
|
|
/**
|
|
* @param string $body
|
|
* @param null $properties
|
|
*/
|
|
public function __construct($body = '', $properties = null)
|
|
{
|
|
$this->setBody($body);
|
|
parent::__construct($properties, static::$propertyDefinitions);
|
|
}
|
|
|
|
/**
|
|
* Sets the message payload
|
|
*
|
|
* @param mixed $body
|
|
* @return $this
|
|
*/
|
|
public function setBody($body)
|
|
{
|
|
$this->body = $body;
|
|
}
|
|
}
|