Class: Interlock::PassThroughStore

Inherits:
Object
  • Object
show all
Defined in:
lib/interlock/pass_through_store.rb

Overview

A stub class so that does not cache, for use in the test environment and the console when the MemoryStore is not available.

Instance Method Summary collapse

Instance Method Details

#nothing(*args) ⇒ Object Also known as: read, write, delete

Do nothing.



10
11
12
# File 'lib/interlock/pass_through_store.rb', line 10

def nothing(*args)
  nil
end