Class: Faulty::Storage::FallbackChain::Options
- Inherits:
-
Struct
- Object
- Struct
- Faulty::Storage::FallbackChain::Options
- Includes:
- ImmutableOptions
- Defined in:
- lib/faulty/storage/fallback_chain.rb
Overview
Options for Faulty::Storage::FallbackChain
Instance Attribute Summary collapse
-
#notifier ⇒ Events::Notifier
readonly
A Faulty notifier.
Instance Method Summary collapse
Methods included from ImmutableOptions
#defaults, #dup_with, #finalize, #initialize, #setup
Instance Attribute Details
#notifier ⇒ Events::Notifier (readonly)
Returns A Faulty notifier.
28 29 30 31 32 33 34 35 36 |
# File 'lib/faulty/storage/fallback_chain.rb', line 28 Options = Struct.new( :notifier ) do include ImmutableOptions def required %i[notifier] end end |
Instance Method Details
#required ⇒ Object
33 34 35 |
# File 'lib/faulty/storage/fallback_chain.rb', line 33 def required %i[notifier] end |