How JustSaying Uses SQS/SNS

Lower level details on which API's JustSaying calls to achieve its mission

Publishing to SNS

JustSaying uses the SNS Publish API to send messages to SNS (documented here). The following parameters are set:

TopicArn

The ARN of the topic to which the message is being published.

Subject

JustSaying will set this to the type name of the .NET message class - "OrderAccepted", for example.

Since a JustSaying subscriber relies on this string to know what type to deserialise the JSON in the Message parameter into, non-JustSaying publishers should restrict this parameter to alphanumeric characters.

MessageAttributes

Any message attributes that you have chosen to send along with the message.

Message

The actual message object, serialised to JSON. It is worth noting that the JSON sent in this parameter becomes a subset of the JSON that will be delivered (by the SNS service) to an SQS subscriber. This is described here and here.

In addition to those properties you will define in your own messages, the following are available to a JustSaying publisher:

Properties which are not populated will not appear in the message JSON. Enumerations are serialised as strings.

In summary, suppose we have the following message class:

public class OrderAccepted : Message
{
    public int OrderId { get; set; }
}

And suppose I create a message object from that class:

var orderAccepted = new OrderAccepted
{
    OrderId = 1234,
    RaisingComponent = "orderapi",
};

This will result in the following JSON being created and populated on that Message parameter to the SNS Publish API:

{
    "OrderId": 1234,
    "Id": "e3f84a55-b677-43df-8c24-92c170fdd89f",
    "TimeStamp": "2019-07-03T09:53:09.2956149Z",
    "RaisingComponent": "orderapi"
}

Sending to SQS ("point to point")

JustSaying uses the SQS SendMessage API to send messages to SQS (documented here). The following parameters are set:

QueueUrl

The URL of the queue to which the message is being sent.

DelaySeconds

JustSaying will set this value to be that of the Delay property on the PublishMetadata class which is supplied as a parameter to the PublishAsync method.

MessageBody

A JSON object containing two properties, Subject and Message. Subject, as with the SNS publisher, will be the type name of the .NET message class. Message will be the actual message object, serialised to JSON. The same serialisation applies as for the SNS publisher.

As an example, if I create the same OrderAccepted object as before and send that to SQS, then the value of this parameter will be:

{
    "Subject": "OrderAccepted",
    "Message": "{\"OrderId\":1234,\"Id\":\"e3f84a55-b677-43df-8c24-92c170fdd89f\",\"TimeStamp\":\"2019-07-03T09:53:09.2956149Z\",\"RaisingComponent\":\"orderapi\"}"
}

This structure is to ensure that messages that are delivered to SQS queues as a result of directly publishing to the queue have the same format as messages delivered to a queue as a result of being subscribed to an SNS topic to which a message was published. So, from the point of view of a subscriber, whether the message was originally delivered to SNS or SQS is not important.

Last updated