
com.bazaarvoice.emodb.table.db.astyanax.MaintenanceDAO Maven / Gradle / Ivy
package com.bazaarvoice.emodb.table.db.astyanax;
import javax.annotation.Nullable;
import java.util.Iterator;
import java.util.Map;
public interface MaintenanceDAO {
Iterator> listMaintenanceOps();
@Nullable
MaintenanceOp getNextMaintenanceOp(String table);
void performMetadataMaintenance(String table);
void performDataMaintenance(String table, Runnable progress);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy