Class: Faulty::Cache::FaultTolerantProxy::Options
- Inherits:
-
Struct
- Object
- Struct
- Faulty::Cache::FaultTolerantProxy::Options
- Includes:
- ImmutableOptions
- Defined in:
- lib/faulty/cache/fault_tolerant_proxy.rb
Overview
Options for Faulty::Cache::FaultTolerantProxy
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.
20 21 22 23 24 25 26 27 28 |
# File 'lib/faulty/cache/fault_tolerant_proxy.rb', line 20 Options = Struct.new( :notifier ) do include ImmutableOptions def required %i[notifier] end end |
Instance Method Details
#required ⇒ Object
25 26 27 |
# File 'lib/faulty/cache/fault_tolerant_proxy.rb', line 25 def required %i[notifier] end |