| Class | Rddb::ViewStore::Base |
| In: |
lib/rddb/view_store.rb
|
| Parent: | Object |
Delete the view.
# File lib/rddb/view_store.rb, line 18
18: def delete(name)
19: raise_abstract_error('delete')
20: end
Return true if the view exists in storage.
# File lib/rddb/view_store.rb, line 23
23: def exists?(name)
24: raise_abstract_error('exists?')
25: end
Find the view.
# File lib/rddb/view_store.rb, line 8
8: def find(name)
9: raise_abstract_error('find')
10: end