module Thread::ParentThread

Attributes

parent_thread[R]

Public Class Methods

new(*args, **opts, &block) click to toggle source
Calls superclass method
# File lib/core_ext/thread/parent_thread.rb, line 7
def initialize(*args, **opts, &block)
  @parent_thread = Thread.current
  super
end