class Flor::Caller::ProcessStatus

Attributes

exitstatus[R]
process[R]

Public Class Methods

new(process, exitstatus) click to toggle source
# File lib/flor/unit/caller_jruby.rb, line 20
def initialize(process, exitstatus)

  @process = process
  @exitstatus = exitstatus
end

Public Instance Methods

pid() click to toggle source
# File lib/flor/unit/caller_jruby.rb, line 26
def pid; @process.pid; rescue; nil; end