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.
Method Summary
Methods included from ImmutableOptions
Instance Attribute Details
#notifier ⇒ Events::Notifier (readonly)
19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/faulty/cache/fault_tolerant_proxy.rb', line 19 Options = Struct.new( :notifier ) do include ImmutableOptions private def required i[notifier] end end |