Class: Open3::DetachThread
- Inherits:
-
Thread
- Object
- Thread
- Open3::DetachThread
- Defined in:
- lib/open3/jruby_windows.rb
Instance Attribute Summary collapse
-
#pid ⇒ Object
readonly
Returns the value of attribute pid.
Instance Method Summary collapse
-
#initialize(pid) ⇒ DetachThread
constructor
A new instance of DetachThread.
Constructor Details
#initialize(pid) ⇒ DetachThread
Returns a new instance of DetachThread.
119 120 121 122 123 124 |
# File 'lib/open3/jruby_windows.rb', line 119 def initialize(pid) super @pid = pid self[:pid] = pid end |
Instance Attribute Details
#pid ⇒ Object (readonly)
Returns the value of attribute pid.
117 118 119 |
# File 'lib/open3/jruby_windows.rb', line 117 def pid @pid end |