IsLocal property: Message class
Description
This property is True if the message object that was just instantiated was published locally. This property takes a Boolean value.
This property is valid for both asynchronous and synchronous messages.
This property is read-only.
Example
&MSG = %IntBroker.GetMessage();
If &MSG.IsLocal Then /* LOCAL NODE */
/* do processing specific to local node */
Else
/* do processing specific to remote nodes */
End-If;