Class: DSP::NextRequest
Overview
interface NextRequest extends Request {
arguments: NextArguments;
}
Instance Attribute Summary collapse
-
#arguments ⇒ Object
type: NextArguments # type: string # type: number # type: string.
-
#command ⇒ Object
type: NextArguments # type: string # type: number # type: string.
-
#seq ⇒ Object
type: NextArguments # type: string # type: number # type: string.
-
#type ⇒ Object
type: NextArguments # type: string # type: number # type: string.
Instance Method Summary collapse
Methods inherited from DSPBase
Constructor Details
This class inherits a constructor from DSP::DSPBase
Instance Attribute Details
#arguments ⇒ Object
type: NextArguments # type: string # type: number # type: string
1799 1800 1801 |
# File 'lib/dsp/dsp_protocol.rb', line 1799 def arguments @arguments end |
#command ⇒ Object
type: NextArguments # type: string # type: number # type: string
1799 1800 1801 |
# File 'lib/dsp/dsp_protocol.rb', line 1799 def command @command end |
#seq ⇒ Object
type: NextArguments # type: string # type: number # type: string
1799 1800 1801 |
# File 'lib/dsp/dsp_protocol.rb', line 1799 def seq @seq end |
#type ⇒ Object
type: NextArguments # type: string # type: number # type: string
1799 1800 1801 |
# File 'lib/dsp/dsp_protocol.rb', line 1799 def type @type end |
Instance Method Details
#from_h!(value) ⇒ Object
1801 1802 1803 1804 1805 1806 1807 1808 |
# File 'lib/dsp/dsp_protocol.rb', line 1801 def from_h!(value) value = {} if value.nil? self.arguments = NextArguments.new(value['arguments']) unless value['arguments'].nil? self.command = value['command'] self.seq = value['seq'] self.type = value['type'] self end |