Interface IndexStore
-
- All Known Implementing Classes:
FileSystemIndexStore
public interface IndexStore
- Author:
- Tommaso Nolli
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QuadTree
load(IndexFile indexfile, boolean useMemoryMapping)
Loads aQuadTree
void
store(QuadTree tree)
Stores aQuadTree
-
-
-
Method Detail
-
store
void store(QuadTree tree) throws StoreException
Stores aQuadTree
- Parameters:
tree
- theQuadTree
to store- Throws:
StoreException
-
load
QuadTree load(IndexFile indexfile, boolean useMemoryMapping) throws StoreException
Loads aQuadTree
- Returns:
- the loaded
QuadTree
- Throws:
StoreException
-
-