Class: Quark::MdkMetrics::InteractionAck
- Inherits:
-
Object
- Object
- Quark::MdkMetrics::InteractionAck
- Extended by:
- DatawireQuarkCore::Static
- Defined in:
- lib/mdk_metrics.rb
Overview
Wire protocol message for MCP to acknowledge InteractionEvent receipt.
Constant Summary
Constants included from DatawireQuarkCore::Static
DatawireQuarkCore::Static::Unassigned
Instance Attribute Summary collapse
-
#sequence ⇒ Object
Returns the value of attribute sequence.
Instance Method Summary collapse
- #__init_fields__ ⇒ Object
- #_getClass ⇒ Object
- #_getField(name) ⇒ Object
- #_setField(name, value) ⇒ Object
-
#initialize ⇒ InteractionAck
constructor
A new instance of InteractionAck.
Methods included from DatawireQuarkCore::Static
_lazy_statics, static, unlazy_statics
Constructor Details
#initialize ⇒ InteractionAck
Returns a new instance of InteractionAck.
157 158 159 160 161 162 |
# File 'lib/mdk_metrics.rb', line 157 def initialize() super() nil end |
Instance Attribute Details
#sequence ⇒ Object
Returns the value of attribute sequence.
149 150 151 |
# File 'lib/mdk_metrics.rb', line 149 def sequence @sequence end |
Instance Method Details
#__init_fields__ ⇒ Object
199 200 201 202 203 204 205 |
# File 'lib/mdk_metrics.rb', line 199 def __init_fields__() super self.sequence = nil nil end |
#_getClass ⇒ Object
167 168 169 170 171 172 |
# File 'lib/mdk_metrics.rb', line 167 def _getClass() return "mdk_metrics.InteractionAck" nil end |
#_getField(name) ⇒ Object
174 175 176 177 178 179 180 181 182 183 184 185 |
# File 'lib/mdk_metrics.rb', line 174 def _getField(name) if ((name) == ("_json_type")) return ::Quark.mdk_metrics.InteractionAck._json_type end if ((name) == ("sequence")) return (self).sequence end return nil nil end |
#_setField(name, value) ⇒ Object
187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/mdk_metrics.rb', line 187 def _setField(name, value) if ((name) == ("_json_type")) ::Quark.mdk_metrics.InteractionAck._json_type = ::DatawireQuarkCore.cast(value) { ::String } end if ((name) == ("sequence")) (self).sequence = ::DatawireQuarkCore.cast(value) { ::Integer } end nil end |