Method: Rex::Ref#refinit
- Defined in:
- lib/rex/sync/ref.rb
#refinit ⇒ Object
Initializes the reference count to one.
17 18 19 20 21 22 |
# File 'lib/rex/sync/ref.rb', line 17 def refinit @_references = 1 @_references_mutex = Mutex.new self end |