Synchronization::LockableObject
@!macro atomic_boolean @!visibility private @!macro internal_implementation_note
@!macro atomic_boolean_method_false_question
# File lib/concurrent/atomic/mutex_atomic_boolean.rb, line 32 def false? synchronize { !@value } end
@!macro atomic_boolean_method_make_false
# File lib/concurrent/atomic/mutex_atomic_boolean.rb, line 42 def make_false synchronize { ns_make_value(false) } end
@!macro atomic_boolean_method_make_true
# File lib/concurrent/atomic/mutex_atomic_boolean.rb, line 37 def make_true synchronize { ns_make_value(true) } end
@!macro atomic_boolean_method_true_question
# File lib/concurrent/atomic/mutex_atomic_boolean.rb, line 27 def true? synchronize { @value } end
Generated with the Darkfish Rdoc Generator 2.