Package com.qfs.index
Interface IWritableIndex
- All Known Subinterfaces:
IIndexTransaction
- All Known Implementing Classes:
LazyDeleteLinkedIndexTransaction
public interface IWritableIndex
A writable
IIndex.- Author:
- ActiveViam
-
Method Summary
-
Method Details
-
index
void index(int key, int value) Adds a new value indexed by the given key.- Parameters:
key- the keyvalue- the value to index
-
remove
void remove(int key, int value) Removes the value that was indexed by the given key.- Parameters:
key- the keyvalue- the indexed value to remove
-