When ‘mutex_m’ is required, any object that extends or includes Mutex_m will be treated like a Mutex.
Start by requiring the standard library Mutex_m:
require "mutex_m.rb"
From here you can extend an object with Mutex instance methods:
obj = Object.new obj.extend Mutex_m
Or mixin Mutex_m into your module to your class inherit Mutex instance methods.
class Foo include Mutex_m # ... end obj = Foo.new # this obj can be handled like Mutex
See Mutex#lock
# File mutex_m.rb, line 87
def mu_lock
@_mutex.lock
end
See Mutex#locked?
# File mutex_m.rb, line 77
def mu_locked?
@_mutex.locked?
end
See Mutex#synchronize
# File mutex_m.rb, line 72
def mu_synchronize(&block)
@_mutex.synchronize(&block)
end
See Mutex#try_lock
# File mutex_m.rb, line 82
def mu_try_lock
@_mutex.try_lock
end
Commenting is here to help enhance the documentation. For example, sample code, or clarification of the documentation.
If you are posting code samples in your comments, please wrap them in "<pre><code class="ruby" > ... </code></pre>" markup in order to get syntax highlighting.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file a bug report so that it can be corrected for the next release. Thank you.