Class: DSP::ContinueArguments
- 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
-
#threadId ⇒ Object
type: number.
Instance Method Summary collapse
Methods inherited from DSPBase
Constructor Details
This class inherits a constructor from DSP::DSPBase
Instance Attribute Details
#threadId ⇒ Object
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 |