class RailsBand::ActiveSupport::Event::CacheIncrement

A wrapper for the event that is passed to ‘cache_increment.active_support`.

def amount

def amount
  @amount ||= @event.payload.fetch(:amount)
end

def key

def key
  @key ||= @event.payload.fetch(:key)
end

def store

def store
  @store ||= @event.payload.fetch(:store)
end