instance method
sharing
Ruby on Rails 8.0.4
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 158
def sharing
start_sharing
begin
yield
ensure
stop_sharing
end
end
Defined in activesupport/lib/active_support/concurrency/share_lock.rb line 158
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Concurrency::ShareLock