instance method
sharing
Ruby on Rails 7.1.6
Since v5.2.8.1Signature
sharing()
Execute the supplied block while holding the Share lock.
Source
# File activesupport/lib/active_support/concurrency/share_lock.rb, line 159
def sharing
start_sharing
begin
yield
ensure
stop_sharing
end
end
Defined in activesupport/lib/active_support/concurrency/share_lock.rb line 159
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Concurrency::ShareLock