module Fiber::Storage
Provides compatibility shims for fiber storage.
Constants
- VERSION
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/fiber-storage-1.0.0/lib/fiber/storage.rb, line 13 def initialize(*arguments, storage: true, **options, &block) case storage when true @storage = Fiber.current.storage else raise TypeError, "Storage must be a hash!" unless storage.is_a?(Hash) @storage = storage end super(*arguments, **options, &block) end
Initialize the fiber with the given storage.
Calls superclass method
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/fiber-storage-1.0.0/lib/fiber/storage.rb, line 37 def __storage__ @storage ||= {} end
@private
Source
# File vendor/bundle/ruby/3.4.0/gems/fiber-storage-1.0.0/lib/fiber/storage.rb, line 32 def storage @storage.dup end
The storage associated with this fiber.
Source
# File vendor/bundle/ruby/3.4.0/gems/fiber-storage-1.0.0/lib/fiber/storage.rb, line 27 def storage=(hash) @storage = hash.dup end
Set
the storage associated with this fiber, clearing any previous storage.