Class: Faulty::Cache::FaultTolerantProxy::Options

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

Overview

Instance Attribute Summary collapse

Method Summary

Methods included from ImmutableOptions

#initialize

Instance Attribute Details

#notifierEvents::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