Class: DSP::TerminateThreadsRequest
- Defined in:
- lib/dsp/dsp_protocol.rb
Overview
interface TerminateThreadsRequest extends Request {
arguments: TerminateThreadsArguments;
}
Instance Attribute Summary collapse
-
#arguments ⇒ Object
type: TerminateThreadsArguments # type: string # type: number # type: string.
-
#command ⇒ Object
type: TerminateThreadsArguments # type: string # type: number # type: string.
-
#seq ⇒ Object
type: TerminateThreadsArguments # type: string # type: number # type: string.
-
#type ⇒ Object
type: TerminateThreadsArguments # 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: TerminateThreadsArguments # type: string # type: number # type: string
2693 2694 2695 |
# File 'lib/dsp/dsp_protocol.rb', line 2693 def arguments @arguments end |
#command ⇒ Object
type: TerminateThreadsArguments # type: string # type: number # type: string
2693 2694 2695 |
# File 'lib/dsp/dsp_protocol.rb', line 2693 def command @command end |
#seq ⇒ Object
type: TerminateThreadsArguments # type: string # type: number # type: string
2693 2694 2695 |
# File 'lib/dsp/dsp_protocol.rb', line 2693 def seq @seq end |
#type ⇒ Object
type: TerminateThreadsArguments # type: string # type: number # type: string
2693 2694 2695 |
# File 'lib/dsp/dsp_protocol.rb', line 2693 def type @type end |
Instance Method Details
#from_h!(value) ⇒ Object
2695 2696 2697 2698 2699 2700 2701 2702 |
# File 'lib/dsp/dsp_protocol.rb', line 2695 def from_h!(value) value = {} if value.nil? self.arguments = TerminateThreadsArguments.new(value['arguments']) unless value['arguments'].nil? self.command = value['command'] self.seq = value['seq'] self.type = value['type'] self end |