Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
| docs:3500:0400:0410:0411 [2023/04/06 04:42] – sean | docs:3500:0400:0410:0411 [2025/06/12 02:36] (current) – Rename to AwareIM aware_support3 | ||
|---|---|---|---|
| Line 7: | Line 7: | ||
| - Inherit the Sink from the '' | - Inherit the Sink from the '' | ||
| - If necessary override init method to provide the Sink-specific initialization (if there’s any) – this method is called once when the Sink is initialized. The Sink-specific properties would have been entered by the user in the Configuration Tool (see also section 4.3) | - If necessary override init method to provide the Sink-specific initialization (if there’s any) – this method is called once when the Sink is initialized. The Sink-specific properties would have been entered by the user in the Configuration Tool (see also section 4.3) | ||
| - | - You must override the following method to provide your own handling of messages sent from //**Aware IM**//:< | + | - You must override the following method to provide your own handling of messages sent from //**AwareIM**//:< |
| - | throws PipelineException;</ | + | throws PipelineException;</ |
| - get the array of DataObject’s from the message:< | - get the array of DataObject’s from the message:< | ||
| - use MessageInterpreter class to interpret the message (see also 4.1.3):< | - use MessageInterpreter class to interpret the message (see also 4.1.3):< | ||
| Line 14: | Line 14: | ||
| String serviceName | String serviceName | ||
| - | As an example you can see the code snippet below that implements the Sink that sends outgoing e-mails from //**Aware IM**//. Note that this code is for illustration purposes only and certain details such as e-mail construction and sending and error handling are omitted. | + | As an example you can see the code snippet below that implements the Sink that sends outgoing e-mails from //**AwareIM**//. Note that this code is for illustration purposes only and certain details such as e-mail construction and sending and error handling are omitted. |
| <code java> public | <code java> public | ||