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