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

    Modifier and Type
    Method
    Description
    void
    index(int key, int value)
    Adds a new value indexed by the given key.
    void
    remove(int key, int value)
    Removes the value that was indexed by the given key.
  • Method Details

    • index

      void index(int key, int value)
      Adds a new value indexed by the given key.
      Parameters:
      key - the key
      value - the value to index
    • remove

      void remove(int key, int value)
      Removes the value that was indexed by the given key.
      Parameters:
      key - the key
      value - the indexed value to remove