blob: d00b805c0cf344fdf261eac3b238a60c9f1bf044 [file] [log] [blame]
package edu.uci.ics.hyracks.storage.am.lsm.common.api;
import edu.uci.ics.hyracks.storage.am.common.api.IndexException;
import edu.uci.ics.hyracks.storage.am.lsm.common.impls.LSMComponentFileReferences;
import edu.uci.ics.hyracks.storage.common.buffercache.IBufferCache;
public interface ILSMComponentFactory {
public ILSMComponent createLSMComponentInstance(LSMComponentFileReferences cfr) throws IndexException;
public IBufferCache getBufferCache();
}