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 QuadTreeload(IndexFile indexfile, boolean useMemoryMapping)Loads aQuadTreevoidstore(QuadTree tree)Stores aQuadTree
-
-
-
Method Detail
-
store
void store(QuadTree tree) throws StoreException
Stores aQuadTree- Parameters:
tree- theQuadTreeto store- Throws:
StoreException
-
load
QuadTree load(IndexFile indexfile, boolean useMemoryMapping) throws StoreException
Loads aQuadTree- Returns:
- the loaded
QuadTree - Throws:
StoreException
-
-