class Listen::QueueOptimizer::Config

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

# sig/listen/queue_optimizer.rbs

class Listen::QueueOptimizer::Config
  def initialize: (Listen::Backend adapter_class, Listen::Silencer silencer) -> void
end

def debug(*args, &block)

def debug(*args, &block)
  Listen.logger.debug(*args, &block)
end

def exist?(path)

def exist?(path)
  Pathname(path).exist?
end

def initialize(adapter_class, silencer)

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

def initialize: (Listen::Backend adapter_class, Listen::Silencer silencer) -> void

This signature was generated using 1 sample from 1 application.

def initialize(adapter_class, silencer)
  @adapter_class = adapter_class
  @silencer = silencer
end

def silenced?(path, type)

def silenced?(path, type)
  @silencer.silenced?(path, type)
end