Interface RuntimeStorageEngineListener<K,V>

All Superinterfaces:
StorageEngineListener<K,V>

public interface RuntimeStorageEngineListener<K,V> extends StorageEngineListener<K,V>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    void
    copied(int hash, long oldEncoding, long newEncoding, int metadata)
     
    void
    freed(long encoding, int hash, ByteBuffer binaryKey, boolean removed)
     
    void
    written(K key, V value, ByteBuffer binaryKey, ByteBuffer binaryValue, int hash, int metadata, long encoding)
     
  • Method Details

    • written

      void written(K key, V value, ByteBuffer binaryKey, ByteBuffer binaryValue, int hash, int metadata, long encoding)
    • freed

      void freed(long encoding, int hash, ByteBuffer binaryKey, boolean removed)
    • cleared

      void cleared()
    • copied

      void copied(int hash, long oldEncoding, long newEncoding, int metadata)