All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jruby.kernel.process.rb Maven / Gradle / Ivy

module Process
  class WaitThread < Thread
    # only created from Java and used for popen3 right now
    class << self
      private :new
    end

    def pid
      self[:pid]
    end
  end
  private_constant :WaitThread

  class Waiter < Thread
    # only created from Java and used for Process.detach right now
    class << self
      private :new
    end

    def pid
      self[:pid]
    end
  end
  private_constant :Waiter
end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy