com.indeed.util.io.checkpointer.Checkpointer Maven / Gradle / Ivy
The newest version!
package com.indeed.util.io.checkpointer;
import java.io.IOException;
/** @author tony */
public interface Checkpointer {
public T getCheckpoint();
public void setCheckpoint(T checkpoint) throws IOException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy