Module: DebugKeepThreadsRunning
- Defined in:
- lib/stack-service-base/debugger.rb
Instance Method Summary collapse
Instance Method Details
#restart_all_threads ⇒ Object
52 53 54 |
# File 'lib/stack-service-base/debugger.rb', line 52 def restart_all_threads DEBUGGER__.warn 'skip restart_all_threads (threads already running)' end |
#stop_all_threads ⇒ Object
48 49 50 |
# File 'lib/stack-service-base/debugger.rb', line 48 def stop_all_threads DEBUGGER__.warn 'skip stop_all_threads (threads keep running)' end |
#wait_command_loop ⇒ Object
56 57 58 59 60 61 62 63 |
# File 'lib/stack-service-base/debugger.rb', line 56 def wait_command_loop begin super rescue =>e DEBUGGER__.warn "EXCEPTION wait_command_loop: #{e.}" retry end end |