Module: Esse::AsyncIndexing::Config::InstanceMethods

Defined in:
lib/esse/async_indexing/config.rb

Instance Method Summary collapse

Instance Method Details

#async_indexingObject



16
17
18
19
20
21
22
23
# File 'lib/esse/async_indexing/config.rb', line 16

def async_indexing
  @async_indexing ||= AsyncIndexing::Configuration.new
  if block_given?
    yield @async_indexing
  else
    @async_indexing
  end
end