Package com.qfs.index
Interface IWritableIndex
-
- All Known Subinterfaces:
IIndexTransaction
- All Known Implementing Classes:
LazyDeleteLinkedIndexTransaction
public interface IWritableIndexA writableIIndex.- Author:
- ActiveViam
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidindex(int key, int value)Adds a new value indexed by the given key.voidremove(int key, int value)Removes the value that was indexed by the given key.
-
-
-
Method Detail
-
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
-
-