method

after_fork_callback

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: ForkTracker
after_fork_callback() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/fork_tracker.rb, line 19
      def after_fork_callback
        new_pid = Process.pid
        if @pid != new_pid
          @callbacks.each(&:call)
          @pid = new_pid
        end
      end
Register or log in to add new notes.