Class: DSP::ReverseContinueArguments

Inherits:
DSPBase
  • Object
show all
Defined in:
lib/dsp/dsp_protocol.rb

Overview

interface ReverseContinueArguments {

    /** Execute 'reverseContinue' for this thread. */
    threadId: number;
}

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DSPBase

#initialize, #to_h, #to_json

Constructor Details

This class inherits a constructor from DSP::DSPBase

Instance Attribute Details

#threadIdObject

type: number



2036
2037
2038
# File 'lib/dsp/dsp_protocol.rb', line 2036

def threadId
  @threadId
end

Instance Method Details

#from_h!(value) ⇒ Object



2038
2039
2040
2041
2042
# File 'lib/dsp/dsp_protocol.rb', line 2038

def from_h!(value)
  value = {} if value.nil?
  self.threadId = value['threadId']
  self
end