Class: Faulty::Storage::FallbackChain::Options

Inherits:
Struct
  • Object
show all
Includes:
ImmutableOptions
Defined in:
lib/faulty/storage/fallback_chain.rb

Overview

Instance Attribute Summary collapse

Method Summary

Methods included from ImmutableOptions

#initialize

Instance Attribute Details

#notifierEvents::Notifier (readonly)

Returns A Faulty notifier.

Returns:

  • A Faulty notifier



28
29
30
31
32
33
34
35
36
37
38
# File 'lib/faulty/storage/fallback_chain.rb', line 28

Options = Struct.new(
  :notifier
) do
  include ImmutableOptions

  private

  def required
    i[notifier]
  end
end