class Fiber
Released under the MIT License. Copyright, 2023, by Samuel Williams.
Released under the MIT License. Copyright, 2020, by Samuel Williams.
@namespace
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/fiber-storage-1.0.0/lib/fiber/storage.rb, line 46 def self.[] key raise TypeError, "Key must be symbol!" unless key.is_a?(Symbol) self.current.__storage__[key] end
Get a value from the current fiber’s storage.
Source
# File vendor/bundle/ruby/3.4.0/gems/fiber-storage-1.0.0/lib/fiber/storage.rb, line 53 def self.[]= key, value raise TypeError, "Key must be symbol!" unless key.is_a?(Symbol) self.current.__storage__[key] = value end
Set
a value in the current fiber’s storage.
Source
# File vendor/bundle/ruby/3.4.0/gems/fiber-storage-1.0.0/lib/fiber/storage.rb, line 60 def self.__borked_keys__ !Fiber.new do key = :"#{self.object_id}.key" Fiber[key] = true Fiber[key] end.resume end
Whether the fiber storage has buggy keys. Unfortunately the original implementation of fiber storage was broken, this method detects the bug and is used to apply a fix.
Source
# File vendor/bundle/ruby/3.4.0/gems/fiber-annotation-0.2.0/lib/fiber/annotation.rb, line 55 def Fiber.annotate(...) Fiber.current.annotate(...) end
@scope Fiber
@name self.annotate Annotate the current fiber with the given annotation.