Module: Schron::Repository::Interface
Instance Method Summary
collapse
#dump_all, #first, #get, #identity, #insert, #load_all, #multi_get, #multi_insert, #query
Instance Method Details
#dump(object) ⇒ Object
25
26
27
|
# File 'lib/schron/repository/interface.rb', line 25
def dump(object)
raise NotImplementedError
end
|
#load(attributes) ⇒ Object
29
30
31
|
# File 'lib/schron/repository/interface.rb', line 29
def load(attributes)
raise NotImplementedError
end
|
#multi_remove(ids) ⇒ Object
21
22
23
|
# File 'lib/schron/repository/interface.rb', line 21
def multi_remove(ids)
raise NotImplementedError
end
|
#multi_update(objects) ⇒ Object
13
14
15
|
# File 'lib/schron/repository/interface.rb', line 13
def multi_update(objects)
raise NotImplementedError
end
|
#remove(id) ⇒ Object
17
18
19
|
# File 'lib/schron/repository/interface.rb', line 17
def remove(id)
raise NotImplementedError
end
|
#update(object) ⇒ Object
9
10
11
|
# File 'lib/schron/repository/interface.rb', line 9
def update(object)
raise NotImplementedError
end
|