method
check!
v7.0.0 -
Show latest stable
- Class:
ActiveSupport::ForkTracker
check!()public
No documentation available.
# File activesupport/lib/active_support/fork_tracker.rb, line 40
def check!
new_pid = Process.pid
if @pid != new_pid
@callbacks.each(&:call)
@pid = new_pid
end
end