Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| docs:3500:0400:0410 [2023/04/05 06:28] – ↷ Links adapted because of a move operation sean | docs:3500:0400:0410 [2025/06/12 02:36] (current) – Rename to AwareIM aware_support3 | ||
|---|---|---|---|
| Line 3: | Line 3: | ||
| ===== Implementing Channel’s Source and Sink ===== | ===== Implementing Channel’s Source and Sink ===== | ||
| - | The first step that is required to add a custom channel to //**Aware IM**// is to write the component(s) that handle communication between //**Aware IM**// and the external software system or hardware device. In order to write the code for such components it is important to understand the architectural framework that //**Aware IM**// uses to communicate with an external software system or device (" | + | The first step that is required to add a custom channel to //**AwareIM**// is to write the component(s) that handle communication between //**AwareIM**// and the external software system or hardware device. In order to write the code for such components it is important to understand the architectural framework that //**AwareIM**// uses to communicate with an external software system or device (" |
| - | //**Aware IM**// incorporates the '' | + | //**AwareIM**// incorporates the '' |
| - | If communication with the external party requires that messages be sent from //**Aware IM**// to the external party the specific Sink needs to be implemented (//**Aware IM**// framework will automatically provide the corresponding Source). If communication requires that messages be sent from the external party to //**Aware IM**// the specific Source needs to be implemented (//**Aware IM**// framework will automatically provide the corresponding Sink). | + | If communication with the external party requires that messages be sent from //**AwareIM**// to the external party the specific Sink needs to be implemented (//**AwareIM**// framework will automatically provide the corresponding Source). If communication requires that messages be sent from the external party to //**AwareIM**// the specific Source needs to be implemented (//**AwareIM**// framework will automatically provide the corresponding Sink). |
| - | Messages that float between //**Aware IM**// and external party represent arrays of DataObject’s. DataObject is the class that allows defining any number of attributes of different types and provides generic access to them - very much like the [[docs: | + | Messages that float between //**AwareIM**// and external party represent arrays of DataObject’s. DataObject is the class that allows defining any number of attributes of different types and provides generic access to them - very much like the [[docs: |
| - | //**Aware IM**// sends '' | + | //**AwareIM**// sends '' |
| - | //**Aware IM**// provides two utility classes [[docs: | + | //**AwareIM**// provides two utility classes [[docs: |
| To summarize a programmer has to do the following: | To summarize a programmer has to do the following: | ||
| - | - When writing a Sink the service request or notification from //**Aware IM**// has to be translated into the protocol of the external party and sent to this party. | + | - When writing a Sink the service request or notification from //**AwareIM**// has to be translated into the protocol of the external party and sent to this party. |
| - | - When writing a Source the message in the external party’s format has to be translated into the standard service request or notification and sent to //**Aware IM**//. | + | - When writing a Source the message in the external party’s format has to be translated into the standard service request or notification and sent to //**AwareIM**//. |
| The details of this process are described in the sections below. | The details of this process are described in the sections below. | ||
| - | {{simplenavi> | + | {{simplenavi> |