Class: Readapt::Message::Continue

Inherits:
Base
  • Object
show all
Defined in:
lib/readapt/message/continue.rb

Instance Attribute Summary

Attributes inherited from Base

#arguments, #debugger

Instance Method Summary collapse

Methods inherited from Base

#body, #initialize, run, #set_body

Constructor Details

This class inherits a constructor from Readapt::Message::Base

Instance Method Details

#runObject



6
7
8
9
10
11
12
# File 'lib/readapt/message/continue.rb', line 6

def run
  thread = debugger.thread(arguments['threadId'])
  thread.control = :continue
  set_body({
    allThreadsContinued: false
  })
end