class AmaLayout::Notifications::AbstractStore
Public Instance Methods
delete(key, opts = {})
click to toggle source
# File lib/ama_layout/notifications/abstract_store.rb, line 12 def delete(key, opts = {}) raise NotImplementedError, 'you must define a #delete method in a subclass' end
get(key, opts = {})
click to toggle source
# File lib/ama_layout/notifications/abstract_store.rb, line 4 def get(key, opts = {}) raise NotImplementedError, 'you must define a #get method in a subclass' end
set(key, value, opts = {})
click to toggle source
# File lib/ama_layout/notifications/abstract_store.rb, line 8 def set(key, value, opts = {}) raise NotImplementedError, 'you must define a #set method in a subclass' end