Classes | |
struct | data |
struct | message |
struct | messaging_controller |
struct | messaging |
Typedefs | |
typedef connection | Connection |
typedef channel | Channel |
typedef data | Data |
typedef message | Message |
typedef messaging_controller | Messaging_Controller |
typedef void(*) | callback (Channel *channel, Message *mesg, void *state) |
typedef messaging | Messaging |
Enumerations | |
enum | Message_content_type { NULL_CONTENT = 0, BYTE_CONTENT = 1, INT8_CONTENT = 2, UINT8_CONTENT = 3, INT16_CONTENT = 4, UINT16_CONTENT = 5, INT32_CONTENT = 6, UINT32_CONTENT = 7, INT64_CONTENT = 8, UINT64_CONTENT = 9, FLOAT_CONTENT = 10, DOUBLE_CONTENT = 11 } |
The Messaging API consists of data structures and functions related to message transfer and control. Consumers of messaging (e.g. application_components) should code to this API. Many different classes/modules could potentially implement the messaging API, and the choice of messaging implementation is made at deploy time.
Message subscription callback function
Message content will potentially be deallocated after the callback returns, so any data that has to persist past the callback invocation must be *copied*
typedef struct channel Channel |
Opaque channel handle.
Obtained from a Connection via open_channel(Connection connection, const char * name), a Channel is used to send messages, as well as subscribe to other channels and bind incoming messages to a callback for processing.
typedef struct connection Connection |
Opaque connection handle.
A Connection is bound to a single Messaging instance, and is intended to be a persistent.
Messaging module functions
A Messaging instance encapsulates the common messaging-related functions an application component may need to use, such as suscribing to channels, sending messages, registering a callback upon message receipt, etc.
typedef struct messaging_controller Messaging_Controller |
Messaging module functions related to message processing control.
A Messaging_Controller instance encapsulates those functions which perform an administrative role in message delivery rather than a user-focused role (send, receive, subscribe, etc). These are intended to be used by code which controls message delivery and execution to an application component (i.e. within an Execution instance) rather than from within the application component itself
enum Message_content_type |
Arrays of these possible types comprise the Data payload of a Message.