blob: c5bf83eb617551c615c4df2a8733cd835dcd3ab8 [file] [log] [blame]
package edu.uci.ics.hyracks.storage.am.common.api;
import edu.uci.ics.hyracks.storage.am.common.ophelpers.IndexOperation;
public interface IIndexOperationContext {
void setOperation(IndexOperation newOp);
IndexOperation getOperation();
void reset();
}