Class: DSP::NextArguments
Overview
interface NextArguments {
/** Execute 'next' 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
1816 1817 1818 |
# File 'lib/dsp/dsp_protocol.rb', line 1816 def threadId @threadId end |
Instance Method Details
#from_h!(value) ⇒ Object
1818 1819 1820 1821 1822 |
# File 'lib/dsp/dsp_protocol.rb', line 1818 def from_h!(value) value = {} if value.nil? self.threadId = value['threadId'] self end |