Class ScriptMessage

  • All Implemented Interfaces:
    java.io.Serializable

    public class ScriptMessage
    extends java.lang.Object
    implements java.io.Serializable
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ScriptMessage​(java.lang.String messageHandler, org.python.core.PyDictionary messagePayload)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getMessageHandler()
      The message handler that is to be invoked when the message arrives at its destination.
      org.python.core.PyDictionary getMessagePayload()
      The message parameters that the user passed in as a PyDictionary
      void setMessageHandler​(java.lang.String messageHandler)
      Sets the message handler that is to be invoked when the message arrives at its destination.
      void setMessagePayload​(org.python.core.PyDictionary dict)
      Sets the message parameters that the user passed in as a PyDictionary
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ScriptMessage

        public ScriptMessage​(java.lang.String messageHandler,
                             org.python.core.PyDictionary messagePayload)
    • Method Detail

      • getMessageHandler

        public java.lang.String getMessageHandler()
        The message handler that is to be invoked when the message arrives at its destination.
      • setMessageHandler

        public void setMessageHandler​(java.lang.String messageHandler)
        Sets the message handler that is to be invoked when the message arrives at its destination.
      • getMessagePayload

        public org.python.core.PyDictionary getMessagePayload()
        The message parameters that the user passed in as a PyDictionary
      • setMessagePayload

        public void setMessagePayload​(org.python.core.PyDictionary dict)
        Sets the message parameters that the user passed in as a PyDictionary