module Fiber::ParentFiber

Attributes

parent_fiber[R]

Public Class Methods

new(&block) click to toggle source
Calls superclass method
# File lib/core_ext/fiber/parent_fiber.rb, line 9
def initialize(&block)
  @parent_fiber = Fiber.current
  super(&block)
end