RabbitEnvelop Class

The RabbitEnvelop classe provide a commom way to compose RabbitMQ messages (common know as Job Resource)

All messages sent to any RabbitMQ queue shall to be composed by this class constructor

Back to Documentation main page


Implemented method

constructor

Parameters:

Object - mandatory - holds envelop settings properties

String - Mandatory - Data Entity name which this message targets to

String - Mandatory - Action/Remote Procedure name which this message targets to

Object - Mandatory - A valid Mediator User object

Object - Not Mandatory - A valid Mediator User object

Default: envelop.from

String - Not Mandatory - Unique identifier string for this message (if it is a existing one)

Default: util.uuid()

Date - Not Mandatory - Date when the message was created

Default: Date now

Date - Not Mandatory - Date when the message was updated

Default: Date now

Object - Not Mandatory - Payload data to be executed as Job

Object - Not Mandatory - Is the final handled server resource object.

Boolean - Not Mandatory - Indicates job success status.

Default: false

Boolean / String - Not Mandatory - Job error

Default: false

String - Not Mandatory - Job human friendly status

Default: awaiting

String - Not Mandatory - Message content body

Default: 'New message from ' + envelop.from.name

String - Not Mandatory - Message subject

Default: 'New message from ' + envelop.from.name

Examples:

let gmail_email_task = new RabbitEnvelop( {
    "from": self.getServerUser(),
    "payload": {
        "to": pkg.author.email + ", " + pkg.contributors.map(function(user) {
            return user.email;
        }).join(", "),  // email list separated by comma
        "subject": subject,
        "message": message
    },
    "entity": "Gmail",
    "action": "send"
} )
function sendNotification ( job, data, isJobDone, err)
{
    data = data || false;
    err = err || false;
    let notification_task = new RabbitEnvelop( {
        "uuid": job.uuid,
        "from": job.from,
        "payload": job.payload,
        "entity":  job.entity,
        "action":  job.action,
        "data": data,
        "success": isJobDone,
        "error": err,
        "status": isJobDone ? "done" : "not done"
    } )
    this.application.sender.send.notification( notification_task )
}