Sha256: 5e50c106c297f392a529eb691ba03ac7b7bdd2db5e0236e8da75df9bccf93759
Contents?: true
Size: 820 Bytes
Versions: 120
Compression:
Stored size: 820 Bytes
Contents
module Concurrent module Synchronization # Volatile adds the attr_volatile class method when included. # # @example # class Foo # include Concurrent::Synchronization::Volatile # # attr_volatile :bar # # def initialize # self.bar = 1 # end # end # # foo = Foo.new # foo.bar # => 1 # foo.bar = 2 # => 2 Volatile = case when Concurrent.on_cruby? MriAttrVolatile when Concurrent.on_jruby? JRubyAttrVolatile when Concurrent.on_rbx? RbxAttrVolatile when Concurrent.on_truffleruby? TruffleRubyAttrVolatile else MriAttrVolatile end end end
Version data entries
120 entries across 106 versions & 25 rubygems