Method: AssLauncher::Support::Shell::ProcessHolder#alive?

Defined in:
lib/ass_launcher/support/shell/process_holder.rb

#alive?Boolean

True if thread alive

Returns:

  • (Boolean)

Raises:



204
205
206
207
# File 'lib/ass_launcher/support/shell/process_holder.rb', line 204

def alive?
  fail ProcessNotRunning unless running?
  thread.alive?
end