method

_fork

rails latest stable - Class: ActiveSupport::ForkTracker::CoreExt

Method not available on this version

This method is only available on newer versions. The first available version (v7.2.3) is shown here.

_fork()
public

No documentation available.

# File activesupport/lib/active_support/fork_tracker.rb, line 6
      def _fork
        pid = super
        if pid == 0
          ForkTracker.after_fork_callback
        end
        pid
      end