method
thread_mattr_reader
v5.2.3 -
Show latest stable
- Class:
Module
thread_mattr_reader(*syms)public
Defines a per-thread class attribute and creates class and instance reader methods. The underlying per-thread class variable is set to nil, if it is not previously defined.
module Current thread_mattr_reader :user end Current.user # => nil Thread.current[:attr_Current_user] = "DHH" Current.user # => "DHH"
The attribute name must be a valid method name in Ruby.
module Foo thread_mattr_reader :"1_Badname" end # => NameError: invalid attribute name: 1_Badname
If you want to opt out of the creation of the instance reader method, pass instance_reader: false or instance_accessor: false.
class Current thread_mattr_reader :user, instance_reader: false end Current.new.user # => NoMethodError