Class: DSP::ContinueResponse
Overview
interface ContinueResponse extends Response {
body: {
/** If true, the 'continue' request has ignored the specified thread and continued all threads instead.
If this attribute is missing a value of 'true' is assumed for backward compatibility.
*/
allThreadsContinued?: boolean;
};
}
Instance Attribute Summary collapse
-
#body ⇒ Object
type: {.
-
#command ⇒ Object
type: {.
-
#message ⇒ Object
type: {.
-
#request_seq ⇒ Object
/** If true, the ‘continue’ request has ignored the specified thread and continued all threads instead.
-
#seq ⇒ Object
type: {.
-
#success ⇒ Object
type: {.
-
#type ⇒ Object
type: {.
Instance Method Summary collapse
- #from_h!(value) ⇒ Object
-
#initialize(initial_hash = nil) ⇒ ContinueResponse
constructor
A new instance of ContinueResponse.
Methods inherited from DSPBase
Constructor Details
#initialize(initial_hash = nil) ⇒ ContinueResponse
Returns a new instance of ContinueResponse.
1777 1778 1779 1780 |
# File 'lib/dsp/dsp_protocol.rb', line 1777 def initialize(initial_hash = nil) super @optional_method_names = %i[message] end |
Instance Attribute Details
#body ⇒ Object
type: {
1769 1770 1771 |
# File 'lib/dsp/dsp_protocol.rb', line 1769 def body @body end |
#command ⇒ Object
type: {
1769 1770 1771 |
# File 'lib/dsp/dsp_protocol.rb', line 1769 def command @command end |
#message ⇒ Object
type: {
1769 1770 1771 |
# File 'lib/dsp/dsp_protocol.rb', line 1769 def @message end |
#request_seq ⇒ Object
/** If true, the ‘continue’ request has ignored the specified thread and continued all threads instead.
If this attribute is missing a value of 'true' is assumed for backward compatibility.
*/
allThreadsContinued?: boolean;
}
1775 1776 1777 |
# File 'lib/dsp/dsp_protocol.rb', line 1775 def request_seq @request_seq end |
#seq ⇒ Object
type: {
1769 1770 1771 |
# File 'lib/dsp/dsp_protocol.rb', line 1769 def seq @seq end |
#success ⇒ Object
type: {
1769 1770 1771 |
# File 'lib/dsp/dsp_protocol.rb', line 1769 def success @success end |
#type ⇒ Object
type: {
1769 1770 1771 |
# File 'lib/dsp/dsp_protocol.rb', line 1769 def type @type end |
Instance Method Details
#from_h!(value) ⇒ Object
1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 |
# File 'lib/dsp/dsp_protocol.rb', line 1782 def from_h!(value) value = {} if value.nil? self.body = value['body'] # Unknown type self.request_seq = value['request_seq'] self.success = value['success'] # Unknown type self.command = value['command'] self. = value['message'] self.seq = value['seq'] self.type = value['type'] self end |