Module: DebugKeepThreadsRunning

Defined in:
lib/stack-service-base/debugger.rb

Instance Method Summary collapse

Instance Method Details

#restart_all_threadsObject



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_threadsObject



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_loopObject



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.message}"
    retry
  end
end