Class: DSP::StepBackArguments
- Defined in:
- lib/dsp/dsp_protocol.rb
Overview
interface StepBackArguments {
/** Execute 'stepBack' for this thread. */
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
1983 1984 1985 |
# File 'lib/dsp/dsp_protocol.rb', line 1983 def threadId @threadId end |
Instance Method Details
#from_h!(value) ⇒ Object
1985 1986 1987 1988 1989 |
# File 'lib/dsp/dsp_protocol.rb', line 1985 def from_h!(value) value = {} if value.nil? self.threadId = value['threadId'] self end |