Class: DSP::RestartFrameArguments
- Defined in:
- lib/dsp/dsp_protocol.rb
Overview
interface RestartFrameArguments {
/** Restart this stackframe. */
frameId: number;
}
Instance Attribute Summary collapse
-
#frameId ⇒ Object
type: number.
Instance Method Summary collapse
Methods inherited from DSPBase
Constructor Details
This class inherits a constructor from DSP::DSPBase
Instance Attribute Details
#frameId ⇒ Object
type: number
2089 2090 2091 |
# File 'lib/dsp/dsp_protocol.rb', line 2089 def frameId @frameId end |
Instance Method Details
#from_h!(value) ⇒ Object
2091 2092 2093 2094 2095 |
# File 'lib/dsp/dsp_protocol.rb', line 2091 def from_h!(value) value = {} if value.nil? self.frameId = value['frameId'] self end |