Studio:AutoScript Messages: Difference between revisions

From STRIDE Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(65 intermediate revisions by 4 users not shown)
Line 1: Line 1:
__FORCETOC__ 
STRIDE offers many types of messaging as well as many options on messaging. For ease of understanding, this section describes overall concepts and then describes the precise functionality that STRIDE provides.<br>
STRIDE offers many types of messaging as well as many options on messaging. For ease of understanding, this section describes overall concepts and then describes the precise functionality that STRIDE provides.<br>


== Concepts ==
== Ownership vs. Usage ==
This section describes overall basic STRIDE concepts related to messaging. Later sections describe how to specifically use STRIDE to facilitate messaging.
STRIDE has the concept of a Message Owner and a Message User. In general STRIDE usage the Owner and User imply target and host, but for messaging this meaning is transparent. A Message Owner may be on the host or the target. A Message User may be on the host or target.
<br>
 
=== Message User ===
A [[AutoScript#ascript.Messages.Item.User|Message User]] may be any script that is not registered as the message owner or message override owner. The [[AutoScript#ascript.Messages.Item.User|Message User]] may be access via the message as [[AutoScript#ascript.Messages.Item.User|ascript.Messages.Item.User]].
<br>
 
=== Message Owner ===
The [[AutoScript#ascript.Messages.Item.Owner|Message Owner]] is the script that has successfully registered itself as the owner of the message (by calling the Register method). A message will only have one registered owner. Calls to register a second owner will result in an exception will be thrown. Ownership can be surrendered by calling the Unregister method (or by exiting the script that registered ownership). The [[AutoScript#ascript.Messages.Item.Owner|Message Owner]] may be accessed via [[AutoScript#ascript.Messages.Item.Owner|ascript.Messages.Item.Owner]].
<br>
<br>


=== Ownership vs. Usage ===
=== Override Owner ===
STRIDE has the concept of a message owner and a message user. In general STRIDE usage the Owner and User imply target and host, but for messaging this meaning is transparent. A message owner may be on the host or the target. A message user may be on the host or target.
The Message Override Owner of a message is the script that successfully registered as the override owner (using the RegisterOverride method). An override owner is used to bypass the registered owner. If a message has an override owner registered, message transfers are sent to the registered override owner and not the registered owner. This allows the ability to code scripting with the registered owner, but to bypass the registered owner for certain processing for a variety of reasons (i.e. some code not implemented for the registered owner, some exception cases, etc.). It is legal for a script to declare both forms of message ownership. Thus, the same script may be both registered owner and the registered override owner.
<br>
<br>


==== User ====
== Message Payloads ==
A message user may be any script that is not registered as the message owner or message override owner.
Payloads are [[AutoScript_Dynamic_Objects|Dynamic Objects]] containing data related to a message. A One-Way Command message may have a Command Payload. A One-Way Response message may have a Response Payload. A Two-Way Message may have both a Command Payload and a Response Payload. The word 'may' is used here because these are the legal conditions of what payloads may exist. For a Command Payload to exist, the captured message must take one or more parameters. For a Response Payload to exist, the captured message must be defined with a response payload.
<br>
<br>


==== Owner ====
These payloads are defined as properties for both a [[AutoScript#ascript.Messages.Item.User|Message User]] and a [[AutoScript#ascript.Messages.Item.Owner|Message Owner]]. By being part of both user and owner allows their values can be checked for validity in the event that a message didn't make it from user to owner (or visa-versa).
The message owner is the script that has successfully registered itself as the owner of the message (by calling the Register method). A message will only have one registered owner. Calls to register a second owner will result in an exception will be thrown. Ownership can be surrendered by calling the Unregister method (or by exiting the script that registered ownership).
<br>
<br>


==== Override Owner ====
== Synchronous / Asynchronous Messaging ==
The message override owner of a message is the script that successfully registered as the override owner (using the RegisterOverride method). An override owner is used to bypass the registered owner. If a message has an override owner registered, message transfers are sent to the registered override owner and not the registered owner. This allows the ability to code scripting with the registered owner, but to bypass the registered owner for certain processing for a variety of reasons (i.e. some code not implemented for the registered owner, some exception cases, etc.). It is legal for a script to declare both forms of message ownership. Thus the same script may be both registered owner and the registered override owner.
Messages that are sent between a Message Owner and a Message User will be either asynchronous or synchronous.
<br>
<br>


=== Initiator vs. Handler ===
=== Asynchronous ===
For STRIDE, the owner will be the message initiator for all broadcast messages. This means that a user will be the handler for all broadcast messages (that it has subscribed to). Also, the user will be the message intiator for all One-Way or Two-Way messages. The owner will be the message handler for these cases.
An asynchronous message is also known as a "non-blocking" message. This is the type of messaging that occurs for Broadcast messaging, One-Way Command messaging, and One-Way Response messaging. For asynchronous messaging:<br>
1. The initiator script of the action makes a call to transfer a payload (either a command or response).<br>
2. The payload is logged onto the receiving script's event queue.<br>
3. The initiator script continues processing.<br>
4. Later the receiving script makes a call to [[AutoScript_Events#WaitForEvent|WaitForEvent]] to processing the payload.<br>
<br>
<br>
The initiator script was not blocked from continuing processing. <br>


=== Message Payloads ===
=== Synchronous ===
Payloads are [[Dynamic Objects|Dynamic Objects]] containing data related to a message. A One-Way Command message may have a Command Payload. A One-Way Response message may have a Response Payload. A Two-Way Message may have both a Command Payload and a Response Payload. The word 'may' is used here because these are the legal conditions of what payloads may exist. For a Command Payload to exist, the captured message must take one or more parameters. For a Response Payload to exist, the captured message must be defined with a response payload.
A synchronous message is also known as a "blocking" message. Only a Two-Way message is synchronous for STRIDE. For synchronous messaging:<br>
1. The initiator script makes a call to transfer a command payload.<br>
2. The initiator script then waits until the receiving script provides a response (perhaps with a response payload).<br>
<br>
<br>
The initiator script was blocked from continuing processing until the receiving script responded.<br>
== Messaging Types ==
=== Broadcast Messaging ===
==== Broadcast Messaging Process ====
Broadcast messaging is the simplest form of asynchronous messaging. All broadcast messages are asynchronous (there is no synchronous form). The process for broadcast messages is as follows:


These payloads are defined as part of both a message user (ascript.Messages.Item().User.Command and ascript.Messages.Item().User.Response) and a message owner (ascript.Messages.Item().Owner.Command and ascript.Messages.Item().Owner.Response). By being part of both user and owner allows their values can be checked for validity in the event that a message didn't make it from user to owner (or visa-versa).
1. A Message User script makes a call to Subscribe() to listen for messages. <br>
2. The Message Owner script constructs a Response Payload.<br>
3. The Message Owner script makes a call to Broadcast() to broadcast its Response Payload. <br>
4. The Response Payload is placed on the event queue of each of its subscribers. <br>
5. The Message User script may retrieve messages from its event queue by calling [[AutoScript_Events#WaitForEvent|WaitForEvent()]].<br>
6. When the Message User script is finished listening for messages, a call to Unsubscribe() is made to cease receiving messages.<br>
<br>
<br>


=== Synchronous / Asynchronous Messaging ===
==== Broadcast Messaging Methods ====
Messages that are sent between a message owner and a message user will be either asynchronous or synchronous.<br>
For a broadcast message (a message whose ascript.Messages.Item().Type is "BroadcastMessage"):
 
* Its Message Owner (ascript.Messages.Item().Owner) will have a Broadcast method.


==== Asynchronous ====
* Its Message User object (ascript.Messages.Item().User) will have a Subscribe method and an Unsubscribe method.
An asynchronous message is also known as a "non-blocking" message. When a One-Way Command message is sent from a message user to a message owner (using one of the SendCmd methods), the a message command payload is logged to the message owner script's event queue (and the message user continues processing). When the message owner responds (using SendRsp) with a One-Way Response message, the response payload is logged to the message user script's event queue (and the message user continues processing).  The initiator was not blocked from continuing processing. <br>


==== Synchronous ====
* These are the only methods available for this message type. Thus other message methods (e.g. Register/Unregister) will not be available.
A synchronous message is also known as a "blocking" message. A message transfer occurs between message owner and message user. If the message user initiates the message, the message is sent to the message owner and the message user waits until it receives a response. If the message owner is initiating the message, it too is blocked until it receives a response from the message user. The initiator of the message is blocked until it receives a response from the handler of the message.<br>


=== Messaging Types ===
=== Point-To-Point Messaging ===
==== Broadcast Messaging ====
Point-to-Point messaging refers to messaging where there is a single sender and a single receiver for a message (as opposed to broadcast messaging with multiple receivers). Point-to-Point messages are either Two-Way or One-Way.
Broadcast messaging is the simplest form of asynchronous messaging. All broadcast messages are asynchronous (there is no synchronous form). A message user subscribes to a message. The message owner broadcasts messages. The messages are placed on the message user's event queue. When the message user script is finished listening for messages, the script calls Unsubscribe to cease receiving messages.
<br>


==== Two-Way Messaging ====
==== Two-Way Messaging ====
Two-Way Command/Response messaging is synchronous. The message user sends a command payload to the message owner and waits until the message owner sends a response. This is also known as a blocking message because the message user script is blocked from continuing processing until the message owner provides a response.  
===== Two-Way Messaging Process =====
Two-Way Command/Response messaging is synchronous. The process for two-way messages is as follows:<br>
1. The Message User script constructs a Command Payload [[AutoScript_Dynamic_Objects|Dynamic Object]].<br>
2. The Message User script makes a call (SendAndRead or SendCmd) to send the Command Payload to the Message Owner script.<br>
3. The Message User script:<br>
3.1. in case of SendAndRead blocks and if the [[AutoScript#Ascript API|RspTimeoutPeriod]] is non-zero and the call does not complete in the specified time, an exception is thrown.<br>
3.2. or explicitly would need to read an event from its event queue using [[AutoScript_Events#WaitForEvent|WaitForEvent()]].<br>
4. The Message Owner script processes the Command Payload.<br>
5. The Message Owner script performs some processing.<br>
6. The Message Owner script constructs a Response Payload.<br>
7. The Message Owner script makes a SendRsp call to return its Response Payload.<br>
8. The Message User script receives the Response Payload and processes it.<br>
<br>
<br>
===== Two-Way Messaging Methods =====
For a two-way message (a message whose ascript.Messages.Item().Type is "TwoWayMessage"):
* Its Message Owner (ascript.Messages.Item().Owner) will have a SendRsp method.
* Its Message User object (ascript.Messages.Item().User) will have a SendCmd and SendAndRead methods as well as SendCmdBypassOverride and SendAndReadBypassOverride methods.
* These are the only methods available for this message type. Thus other message methods (e.g. Subscribe) will not be available.


==== One-Way Messaging ====
==== One-Way Messaging ====
One-Way Command messaging is asynchronous. For One-Way Command messaging the message user sends any number of one-way command messages to the message owner. These messages are then enqueued to the message owner's event queue. At some point in time, the message owner can respond to these messages with one-way response messages which will then be placed on the message user's event queue.
===== One-Way Messaging Process =====
One-Way Command messaging is asynchronous. The process for One-Way messages is as follows:<br>
1. The Message User script constructs a Command Payload [[AutoScript_Dynamic_Objects|Dynamic Object]].<br>
2. The Message User script makes a call (SendCmd or SendCmdBypass) to send the Command Payload to the Message Owner.<br>
3. The Command Payload is logged onto the event queue for the Message Owner script.<br>
4. The Message User script continues processing.<br>
5. The Message Owner script eventually reads an event from its event queue using [[AutoScript_Events#WaitForEvent|WaitForEvent()]].<br>
6. The Message Owner script formulates a Response Payload.<br>
7. The Message Owner makes a call (SendRsp) to send its Response Payload to the Message User script.<br>
8. The Response Payload is logged onto the event queue for the Message User script.<br>
9. The Message User eventually reads an event from its event queue using [[AutoScript_Events#WaitForEvent|WaitForEvent()]].<br>
<br>
<br>


== Broadcast Messages ==
===== One-Way Messaging Methods =====
Broadcast messaging is used to have a message owner broadcast messages. A number of message users will subscribe to a message for a time. The message user will receive messages until the message user's script exits or until it unsubscribes from the message. The exact process for how this is achieved is as follows:
 
For a One-Way Command message (a message whose ascript.Messages.Item().Type is "OneWayMessage"):
 
* Its Message User (ascript.Messages.Item().User) will have a SendCmd method as well as a SendCmdBypassOverride method.
 
* These are the only methods available for this message type. Thus other message methods (e.g. Subscribe/SendCmd) will not be available.
 
 
For a One-Way Response message (a message whose ascript.Messages.Item().Type is "OneWayResponse"):
 
* Its Message Owner (ascript.Messages.Item().Owner) will have a SendRsp method.
 
* These are the only methods available for this message type. Thus other message methods (e.g. Subscribe/SendCmd) will not be available.


1. A Message User calls Subscribe() to register that it is interested in receiving message events from a given message. <br>
2. When the Message Owner calls Broadcast(), a message event is sent to all Subscribers of the message. The message event received by the Message User is enqueued to its script's event queue. The Message User may then evaluate the messages it has received by making calls to its WaitForEvent() method.<br>
3. When a Message User no longer wishes to receive message events from a given message, it will call Unsubscribe() to unregister its interest in receiving events.<br>


For a broadcast message (a message whose ascript.Messages.Item().Type is "BroadcastMessage"):


* Its owner (ascript.Messages.Item().Owner) will have a Broadcast method.
== Message Methods ==
The message methods available to a message owner or a message user are based upon the message type. This section describes the methods available for the given message types.


* Its user object (ascript.Messages.Item().User) will have a Subscribe method and an Unsubscribe method.
=== Message Owner Methods ===


* These are the only methods available for this message type. Thus other message methods (e.g. Register/Unregister) will not be available.
{| cellspacing="0" cellpadding="10" width="100%" border="1"
|-
| width="240" bgcolor="#66ff99" | &nbsp;<br>
| align="center" colspan="4" bgcolor="#66ff99" | '''Message Type'''<br>
|-
| width="240" bgcolor="#66ff99" | '''Method'''<br>
| width="90" bgcolor="#66ff99" | '''One-Way Command'''<br>
| width="90" bgcolor="#66ff99" | '''One-Way Response'''<br>
| width="90" bgcolor="#66ff99" | '''Two-Way'''<br>
| width="90" bgcolor="#66ff99" | '''Broadcast'''<br>
|-
| Broadcast()
| &nbsp;
| &nbsp;
| &nbsp;
| align="center" | [[Image:Send_output.jpg]]
|-
| SendRsp()
| &nbsp;
| align="center" | [[Image:Send_output.jpg]]
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
|-
| Register()
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
|-
| RegisterOverride()
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
|-
| Unregister()
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
|-
| UnregisterOverride()
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
|}


== Two-Way Command/Response Messaging ==
=== Message User Methods ===
Two-Way messaging is as follows:


1. A Message User calls SendAndRead (or SendAndReadBypassOverride) to synchronously connect with the Message Owner.
{| cellspacing="0" cellpadding="10" width="100%" border="1"
2. The Message owner sets a response payload and calls SendRsp.
|-
| width="240" bgcolor="#66ff99" | &nbsp;<br>
| align="center" colspan="4" bgcolor="#66ff99" | '''Message Type'''<br>
|-
| width="240" bgcolor="#66ff99" | '''Method'''<br>
| width="90" bgcolor="#66ff99" | '''One-Way Command'''<br>
| width="90" bgcolor="#66ff99" | '''One-Way Response'''<br>
| width="90" bgcolor="#66ff99" | '''Two-Way'''<br>
| width="90" bgcolor="#66ff99" | '''Broadcast'''<br>
|-
| SendAndRead()
| &nbsp;
| &nbsp;
| align="center" | [[Image:Send_output.jpg]]
| align="center" | [[Image:Send_output.jpg]]
|-
| SendAndReadBypassOverride()
| &nbsp;
| &nbsp;
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
|-
| SendCmd()
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
|-
| SendCmdBypassOverride()
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
| align="center" | [[Image:Send_output.jpg]]
| &nbsp;
|-
| Subscribe()
| &nbsp;
| &nbsp;
| &nbsp;
| align="center" | [[Image:Send_output.jpg]]
|-
| UnSubscribe()
| &nbsp;
| &nbsp;
| &nbsp;
| align="center" | [[Image:Send_output.jpg]]
|}


== One-Way Command/Response Messaging ==
One-Way messaging is as follows:


1. A Message User script calls SendCmd (or SendCmdBypassOverride) to log a Command Payload to the event queue of the Message Owner. The Message User script then continues processing.
[[Category:Studio:AutoScript]]
2. The Message Owner script eventually decides to look in its event queue (using WaitForEvent()) and sees that it has a message Command Payload to be processed.
3. The Message Owner script later decides that it wants to send a Response Payload back to the Message User. It calls SendRsp to send log a Response Payload to the event queue of the Message User. The Message Owner then continues processing.
4. The Message User later makes a call to its WaitForEvent() method and sees that it has a message Response Payload to be processed.

Latest revision as of 16:06, 21 August 2009

 

STRIDE offers many types of messaging as well as many options on messaging. For ease of understanding, this section describes overall concepts and then describes the precise functionality that STRIDE provides.

Ownership vs. Usage

STRIDE has the concept of a Message Owner and a Message User. In general STRIDE usage the Owner and User imply target and host, but for messaging this meaning is transparent. A Message Owner may be on the host or the target. A Message User may be on the host or target.

Message User

A Message User may be any script that is not registered as the message owner or message override owner. The Message User may be access via the message as ascript.Messages.Item.User.

Message Owner

The Message Owner is the script that has successfully registered itself as the owner of the message (by calling the Register method). A message will only have one registered owner. Calls to register a second owner will result in an exception will be thrown. Ownership can be surrendered by calling the Unregister method (or by exiting the script that registered ownership). The Message Owner may be accessed via ascript.Messages.Item.Owner.

Override Owner

The Message Override Owner of a message is the script that successfully registered as the override owner (using the RegisterOverride method). An override owner is used to bypass the registered owner. If a message has an override owner registered, message transfers are sent to the registered override owner and not the registered owner. This allows the ability to code scripting with the registered owner, but to bypass the registered owner for certain processing for a variety of reasons (i.e. some code not implemented for the registered owner, some exception cases, etc.). It is legal for a script to declare both forms of message ownership. Thus, the same script may be both registered owner and the registered override owner.

Message Payloads

Payloads are Dynamic Objects containing data related to a message. A One-Way Command message may have a Command Payload. A One-Way Response message may have a Response Payload. A Two-Way Message may have both a Command Payload and a Response Payload. The word 'may' is used here because these are the legal conditions of what payloads may exist. For a Command Payload to exist, the captured message must take one or more parameters. For a Response Payload to exist, the captured message must be defined with a response payload.

These payloads are defined as properties for both a Message User and a Message Owner. By being part of both user and owner allows their values can be checked for validity in the event that a message didn't make it from user to owner (or visa-versa).

Synchronous / Asynchronous Messaging

Messages that are sent between a Message Owner and a Message User will be either asynchronous or synchronous.

Asynchronous

An asynchronous message is also known as a "non-blocking" message. This is the type of messaging that occurs for Broadcast messaging, One-Way Command messaging, and One-Way Response messaging. For asynchronous messaging:
1. The initiator script of the action makes a call to transfer a payload (either a command or response).
2. The payload is logged onto the receiving script's event queue.
3. The initiator script continues processing.
4. Later the receiving script makes a call to WaitForEvent to processing the payload.

The initiator script was not blocked from continuing processing.

Synchronous

A synchronous message is also known as a "blocking" message. Only a Two-Way message is synchronous for STRIDE. For synchronous messaging:
1. The initiator script makes a call to transfer a command payload.
2. The initiator script then waits until the receiving script provides a response (perhaps with a response payload).

The initiator script was blocked from continuing processing until the receiving script responded.

Messaging Types

Broadcast Messaging

Broadcast Messaging Process

Broadcast messaging is the simplest form of asynchronous messaging. All broadcast messages are asynchronous (there is no synchronous form). The process for broadcast messages is as follows:

1. A Message User script makes a call to Subscribe() to listen for messages.
2. The Message Owner script constructs a Response Payload.
3. The Message Owner script makes a call to Broadcast() to broadcast its Response Payload.
4. The Response Payload is placed on the event queue of each of its subscribers.
5. The Message User script may retrieve messages from its event queue by calling WaitForEvent().
6. When the Message User script is finished listening for messages, a call to Unsubscribe() is made to cease receiving messages.

Broadcast Messaging Methods

For a broadcast message (a message whose ascript.Messages.Item().Type is "BroadcastMessage"):

  • Its Message Owner (ascript.Messages.Item().Owner) will have a Broadcast method.
  • Its Message User object (ascript.Messages.Item().User) will have a Subscribe method and an Unsubscribe method.
  • These are the only methods available for this message type. Thus other message methods (e.g. Register/Unregister) will not be available.

Point-To-Point Messaging

Point-to-Point messaging refers to messaging where there is a single sender and a single receiver for a message (as opposed to broadcast messaging with multiple receivers). Point-to-Point messages are either Two-Way or One-Way.

Two-Way Messaging

Two-Way Messaging Process

Two-Way Command/Response messaging is synchronous. The process for two-way messages is as follows:
1. The Message User script constructs a Command Payload Dynamic Object.
2. The Message User script makes a call (SendAndRead or SendCmd) to send the Command Payload to the Message Owner script.
3. The Message User script:
3.1. in case of SendAndRead blocks and if the RspTimeoutPeriod is non-zero and the call does not complete in the specified time, an exception is thrown.
3.2. or explicitly would need to read an event from its event queue using WaitForEvent().
4. The Message Owner script processes the Command Payload.
5. The Message Owner script performs some processing.
6. The Message Owner script constructs a Response Payload.
7. The Message Owner script makes a SendRsp call to return its Response Payload.
8. The Message User script receives the Response Payload and processes it.

Two-Way Messaging Methods

For a two-way message (a message whose ascript.Messages.Item().Type is "TwoWayMessage"):

  • Its Message Owner (ascript.Messages.Item().Owner) will have a SendRsp method.
  • Its Message User object (ascript.Messages.Item().User) will have a SendCmd and SendAndRead methods as well as SendCmdBypassOverride and SendAndReadBypassOverride methods.
  • These are the only methods available for this message type. Thus other message methods (e.g. Subscribe) will not be available.

One-Way Messaging

One-Way Messaging Process

One-Way Command messaging is asynchronous. The process for One-Way messages is as follows:
1. The Message User script constructs a Command Payload Dynamic Object.
2. The Message User script makes a call (SendCmd or SendCmdBypass) to send the Command Payload to the Message Owner.
3. The Command Payload is logged onto the event queue for the Message Owner script.
4. The Message User script continues processing.
5. The Message Owner script eventually reads an event from its event queue using WaitForEvent().
6. The Message Owner script formulates a Response Payload.
7. The Message Owner makes a call (SendRsp) to send its Response Payload to the Message User script.
8. The Response Payload is logged onto the event queue for the Message User script.
9. The Message User eventually reads an event from its event queue using WaitForEvent().

One-Way Messaging Methods

For a One-Way Command message (a message whose ascript.Messages.Item().Type is "OneWayMessage"):

  • Its Message User (ascript.Messages.Item().User) will have a SendCmd method as well as a SendCmdBypassOverride method.
  • These are the only methods available for this message type. Thus other message methods (e.g. Subscribe/SendCmd) will not be available.


For a One-Way Response message (a message whose ascript.Messages.Item().Type is "OneWayResponse"):

  • Its Message Owner (ascript.Messages.Item().Owner) will have a SendRsp method.
  • These are the only methods available for this message type. Thus other message methods (e.g. Subscribe/SendCmd) will not be available.


Message Methods

The message methods available to a message owner or a message user are based upon the message type. This section describes the methods available for the given message types.

Message Owner Methods

 
Message Type
Method
One-Way Command
One-Way Response
Two-Way
Broadcast
Broadcast()       Send output.jpg
SendRsp()   Send output.jpg Send output.jpg  
Register() Send output.jpg   Send output.jpg  
RegisterOverride() Send output.jpg   Send output.jpg  
Unregister() Send output.jpg   Send output.jpg  
UnregisterOverride() Send output.jpg   Send output.jpg  

Message User Methods

 
Message Type
Method
One-Way Command
One-Way Response
Two-Way
Broadcast
SendAndRead()     Send output.jpg Send output.jpg
SendAndReadBypassOverride()     Send output.jpg  
SendCmd() Send output.jpg   Send output.jpg  
SendCmdBypassOverride() Send output.jpg   Send output.jpg  
Subscribe()       Send output.jpg
UnSubscribe()       Send output.jpg