class Sequent::Core::EventStore::NoEventTypesCache

Disables event type caching (ie. for in development).

Public Instance Methods

fetch_or_store(event_type) { |event_type| ... } click to toggle source
# File lib/sequent/core/event_store.rb, line 33
def fetch_or_store(event_type)
  yield(event_type)
end