Class: DSP::ExceptionInfoArguments

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

Overview

interface ExceptionInfoArguments {

    /** Thread for which exception information should be retrieved. */
    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



3361
3362
3363
# File 'lib/dsp/dsp_protocol.rb', line 3361

def threadId
  @threadId
end

Instance Method Details

#from_h!(value) ⇒ Object



3363
3364
3365
3366
3367
# File 'lib/dsp/dsp_protocol.rb', line 3363

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