blob: 48416fd3e9b33ace37bb5e0ea857e25f12d23d7d [file] [log] [blame]
package edu.uci.ics.hyracks.storage.am.lsm.common.api;
import java.util.List;
import edu.uci.ics.hyracks.api.exceptions.HyracksDataException;
public interface ILSMIOOperationCallback {
public void beforeOperation(ILSMIOOperation operation) throws HyracksDataException;
public void afterOperation(ILSMIOOperation operation, List<ILSMComponent> oldComponents, ILSMComponent newComponent)
throws HyracksDataException;
public void afterFinalize(ILSMIOOperation operation, ILSMComponent newComponent) throws HyracksDataException;
}