strangedb/src/main/java/org/warp/jcwdb/Cleanable.java

10 lines
162 B
Java
Raw Normal View History

2018-11-27 17:47:19 +01:00
package org.warp.jcwdb;
public interface Cleanable {
/**
* Clean the object
* @return the approximated number of cleaned items
*/
public long clean();
}