Class: DSP::ContinueArguments

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

Overview

interface ContinueArguments {

    /** Continue execution for the specified thread (if possible).
        If the backend cannot continue on a single thread but will continue on all threads, it should set the 'allThreadsContinued' attribute in the response to true.
    */
    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



1751
1752
1753
# File 'lib/dsp/dsp_protocol.rb', line 1751

def threadId
  @threadId
end

Instance Method Details

#from_h!(value) ⇒ Object



1753
1754
1755
1756
1757
# File 'lib/dsp/dsp_protocol.rb', line 1753

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