Skip to content

Message

David Coss edited this page Mar 18, 2014 · 1 revision

Database

About

Once the Queue has been initialized, there is a table that stores each message.

Table Columns

  • id - Integer Primary Key
  • content - String content of the message.
  • content_type - String description of type of content within the context of the programmer's usage.
  • sender - String name of source of message. May be null.
  • target - String intended recipient, if any. May be null.
  • queueid - Integer foreign key for Queue table.

API

Language APIs should abstract rows in this table using language appropriate ways of accessing the following object fields:

  • Content
  • Content Type
  • Sender
  • Recipient
  • Queue ID
  • Message ID
Clone this wiki locally