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