All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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