blob: fa00f8555b3c9a8ac0c339a79ca65e5027fe94c7 [file] [log] [blame]
package edu.uci.ics.hyracks.storage.am.lsm.common.api;
import edu.uci.ics.hyracks.api.exceptions.HyracksDataException;
import edu.uci.ics.hyracks.storage.am.lsm.common.impls.LSMOperationType;
public interface ILSMComponent {
public boolean threadEnter(LSMOperationType opType) throws InterruptedException;
public void threadExit(LSMOperationType opType, boolean failedOperation) throws HyracksDataException;
}