GoLang SAMMessage::__construct

request it (238)
GoLang replacement for PHP's SAMMessage::__construct [edit | history]



Do you know a GoLang replacement for PHP's SAMMessage::__construct? Write it!

PHP SAMMessage::__construct

PHP original manual for SAMMessage::__construct [ show | php.net ]

SAMMessage::__construct

(PECL sam >= 0.1.0)

SAMMessage::__construct Creates a new Message object

Description

SAMMessage::__construct ([ mixed $body ] )

Creates a new SAMMessage object optionally specifying a message body.

Parameters

body

The optional body for the message.

Examples

Example #1 Creating a message

<?php

$msg 
= new SAMMessage();

?>

Example #2 Creating a message with a simple text payload

<?php

$msg 
= new SAMMessage('This is a simple text message');

?>