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.
919 920 921 922 923 924 925 |
# File 'lib/mdk_protocol.rb', line 919 def initialize() self.__init_fields__ (self). = nil end |
Instance Attribute Details
#message ⇒ Object
Returns the value of attribute message.
912 913 914 |
# File 'lib/mdk_protocol.rb', line 912 def @message end |
Instance Method Details
#__init_fields__ ⇒ Object
956 957 958 959 960 961 |
# File 'lib/mdk_protocol.rb', line 956 def __init_fields__() self. = nil nil end |
#_getClass ⇒ Object
930 931 932 933 934 935 |
# File 'lib/mdk_protocol.rb', line 930 def _getClass() return "mdk_protocol.DecodedMessage" nil end |
#_getField(name) ⇒ Object
937 938 939 940 941 942 943 944 945 |
# File 'lib/mdk_protocol.rb', line 937 def _getField(name) if ((name) == ("message")) return (self). end return nil nil end |
#_setField(name, value) ⇒ Object
947 948 949 950 951 952 953 954 |
# File 'lib/mdk_protocol.rb', line 947 def _setField(name, value) if ((name) == ("message")) (self). = value end nil end |