Method: ChildProcess::AbstractProcess#pid

Defined in:
lib/childprocess/abstract_process.rb

#pidFixnum

Returns the pid of the process after it has started.

Returns:

  • (Fixnum)

    the pid of the process after it has started

Raises:



71
72
73
# File 'lib/childprocess/abstract_process.rb', line 71

def pid
  raise SubclassResponsibility, "pid"
end