Interface RuntimeStorageEngineListener<K,V>
-
- All Superinterfaces:
StorageEngineListener<K,V>
public interface RuntimeStorageEngineListener<K,V> extends StorageEngineListener<K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcleared()voidcopied(int hash, long oldEncoding, long newEncoding, int metadata)voidfreed(long encoding, int hash, java.nio.ByteBuffer binaryKey, boolean removed)voidwritten(K key, V value, java.nio.ByteBuffer binaryKey, java.nio.ByteBuffer binaryValue, int hash, int metadata, long encoding)
-
-
-
Method Detail
-
written
void written(K key, V value, java.nio.ByteBuffer binaryKey, java.nio.ByteBuffer binaryValue, int hash, int metadata, long encoding)
-
freed
void freed(long encoding, int hash, java.nio.ByteBuffer binaryKey, boolean removed)
-
cleared
void cleared()
-
copied
void copied(int hash, long oldEncoding, long newEncoding, int metadata)
-
-