strangedb/src/main/java/org/warp/jcwdb/database/DatabaseReferencesMetadataCacheFlusher.java

9 lines
224 B
Java
Raw Normal View History

2019-03-07 11:32:45 +01:00
package org.warp.jcwdb.database;
2019-03-03 00:54:47 +01:00
import java.io.IOException;
import java.util.concurrent.Future;
public interface DatabaseReferencesMetadataCacheFlusher {
Future<Integer> flush(long key, long value) throws IOException;
}