| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | /* * EliasDB * * Copyright 2016 Matthias Ladkau. All rights reserved. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */package graphstorageimport "devt.de/krotik/eliasdb/storage"/*Storage interface models the storage backend for a graph manager.*/type Storage interface {	/*	   Name returns the name of the GraphStorage instance.	*/	Name() string	/*		MainDB returns the main database. The main database is a quick		lookup map for meta data which is always kept in memory.	*/	MainDB() map[string]string	/*	   RollbackMain rollback the main database.	*/	RollbackMain() error	/*	   FlushMain writes the main database to the storage.	*/	FlushMain() error	/*	   FlushAll writes all pending changes to the storage.	*/	FlushAll() error	/*	   StorageManager gets a storage manager with a certain name. A non-existing	   StorageManager is not created automatically if the create flag is set to false.	*/	StorageManager(smname string, create bool) storage.Manager	/*		Close closes the storage.	*/	Close() error}
 |