Class ScriptMessage
- java.lang.Object
- 
- com.inductiveautomation.ignition.common.script.message.ScriptMessage
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class ScriptMessage extends java.lang.Object implements java.io.Serializable- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ScriptMessage(java.lang.String messageHandler, org.python.core.PyDictionary messagePayload)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetMessageHandler()The message handler that is to be invoked when the message arrives at its destination.org.python.core.PyDictionarygetMessagePayload()The message parameters that the user passed in as a PyDictionaryvoidsetMessageHandler(java.lang.String messageHandler)Sets the message handler that is to be invoked when the message arrives at its destination.voidsetMessagePayload(org.python.core.PyDictionary dict)Sets the message parameters that the user passed in as a PyDictionary
 
- 
- 
- 
Method Detail- 
getMessageHandlerpublic java.lang.String getMessageHandler() The message handler that is to be invoked when the message arrives at its destination.
 - 
setMessageHandlerpublic void setMessageHandler(java.lang.String messageHandler) Sets the message handler that is to be invoked when the message arrives at its destination.
 - 
getMessagePayloadpublic org.python.core.PyDictionary getMessagePayload() The message parameters that the user passed in as a PyDictionary
 - 
setMessagePayloadpublic void setMessagePayload(org.python.core.PyDictionary dict) Sets the message parameters that the user passed in as a PyDictionary
 
- 
 
-