blob: 72d9d1dc636e2fd81652b4401f6901df2ee8d34e [file] [log] [blame]
package edu.uci.ics.hyracks.storage.am.lsm.common.impls;
import edu.uci.ics.hyracks.api.context.IHyracksTaskContext;
import edu.uci.ics.hyracks.storage.am.lsm.common.api.ILSMIOOperationScheduler;
import edu.uci.ics.hyracks.storage.am.lsm.common.api.ILSMIOOperationSchedulerProvider;
public enum SynchronousSchedulerProvider implements ILSMIOOperationSchedulerProvider {
INSTANCE;
@Override
public ILSMIOOperationScheduler getIOScheduler(IHyracksTaskContext ctx) {
return SynchronousScheduler.INSTANCE;
}
}