Class: Quark::MdkProtocol::DecodedMessage
- Inherits:
-
DatawireQuarkCore::QuarkObject
- Object
- DatawireQuarkCore::QuarkObject
- Quark::MdkProtocol::DecodedMessage
- Extended by:
- DatawireQuarkCore::Static
- Defined in:
- lib/mdk_protocol.rb
Overview
Sent to a subscriber when a message is received.
Constant Summary
Constants included from DatawireQuarkCore::Static
DatawireQuarkCore::Static::Unassigned
Instance Attribute Summary collapse
-
#message ⇒ Object
Returns the value of attribute message.
Instance Method Summary collapse
- #__init_fields__ ⇒ Object
- #_getClass ⇒ Object
- #_getField(name) ⇒ Object
- #_setField(name, value) ⇒ Object
-
#initialize(message) ⇒ DecodedMessage
constructor
A new instance of DecodedMessage.
Methods included from DatawireQuarkCore::Static
_lazy_statics, static, unlazy_statics
Methods inherited from DatawireQuarkCore::QuarkObject
Constructor Details
#initialize(message) ⇒ DecodedMessage
Returns a new instance of DecodedMessage.
912 913 914 915 916 917 918 |
# File 'lib/mdk_protocol.rb', line 912 def initialize() self.__init_fields__ (self). = nil end |
Instance Attribute Details
#message ⇒ Object
Returns the value of attribute message.
905 906 907 |
# File 'lib/mdk_protocol.rb', line 905 def @message end |
Instance Method Details
#__init_fields__ ⇒ Object
949 950 951 952 953 954 |
# File 'lib/mdk_protocol.rb', line 949 def __init_fields__() self. = nil nil end |
#_getClass ⇒ Object
923 924 925 926 927 928 |
# File 'lib/mdk_protocol.rb', line 923 def _getClass() return "mdk_protocol.DecodedMessage" nil end |
#_getField(name) ⇒ Object
930 931 932 933 934 935 936 937 938 |
# File 'lib/mdk_protocol.rb', line 930 def _getField(name) if ((name) == ("message")) return (self). end return nil nil end |
#_setField(name, value) ⇒ Object
940 941 942 943 944 945 946 947 |
# File 'lib/mdk_protocol.rb', line 940 def _setField(name, value) if ((name) == ("message")) (self). = value end nil end |