module Rails::Application::Finisher::InterlockHook

Experimental RBS support (using type sampling data from the type_fusion project).

# sig/rails/application/finisher.rbs

module Rails::Application::Finisher::InterlockHook
  def self.complete: (Integer _state) -> Thread::ConditionVariable
  def self.run: () -> Integer
end

def self.complete(_state)

Experimental RBS support (using type sampling data from the type_fusion project).

def self.complete: (Integer _state) -> Thread::ConditionVariable

This signature was generated using 10 samples from 1 application.

def self.complete(_state)
  ActiveSupport::Dependencies.interlock.done_running
end

def self.run

Experimental RBS support (using type sampling data from the type_fusion project).

def self.run: () -> Integer

This signature was generated using 8 samples from 1 application.

:nodoc:
def self.run
  ActiveSupport::Dependencies.interlock.start_running
end