class Wireless::Fetcher

The object passed to the factory (`on`) or singleton (`once`) block: a cut-down version of Wireless::Registry which only provides read access (via fetch or its [] alias) to the underlying dependency store

Public Class Methods

new(registry:, seen:) click to toggle source
# File lib/wireless/fetcher.rb, line 10
def initialize(registry:, seen:)
  @registry = registry
  @seen = seen
end