Class: Quark::MdkMetrics::InteractionAck

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from DatawireQuarkCore::Static

_lazy_statics, static, unlazy_statics

Constructor Details

#initializeInteractionAck

Returns a new instance of InteractionAck.



171
172
173
174
175
176
# File 'lib/mdk_metrics.rb', line 171

def initialize()
    
    super()

    nil
end

Instance Attribute Details

#sequenceObject

Returns the value of attribute sequence.



163
164
165
# File 'lib/mdk_metrics.rb', line 163

def sequence
  @sequence
end

Instance Method Details

#__init_fields__Object



213
214
215
216
217
218
219
# File 'lib/mdk_metrics.rb', line 213

def __init_fields__()
    
    super
    self.sequence = nil

    nil
end

#_getClassObject



181
182
183
184
185
186
# File 'lib/mdk_metrics.rb', line 181

def _getClass()
    
    return "mdk_metrics.InteractionAck"

    nil
end

#_getField(name) ⇒ Object



188
189
190
191
192
193
194
195
196
197
198
199
# File 'lib/mdk_metrics.rb', line 188

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



201
202
203
204
205
206
207
208
209
210
211
# File 'lib/mdk_metrics.rb', line 201

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