1 18 package org.apache.activemq.kaha; 19 20 25 public interface StoreEntry{ 26 27 public abstract StoreLocation getKeyDataItem(); 28 29 public abstract StoreLocation getValueDataItem(); 30 31 34 public abstract long getNextItem(); 35 36 39 public abstract int getKeyFile(); 40 41 44 public abstract int getValueFile(); 45 46 49 public abstract long getValueOffset(); 50 51 54 public abstract long getOffset(); 55 56 public abstract int getKeySize(); 57 58 public abstract int getValueSize(); 59 } 60 | Popular Tags |