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

com.github.nicosensei.textbatch.job.JobProgress Maven / Gradle / Ivy

/**
 *
 */
package com.github.nicosensei.textbatch.job;

import com.github.nicosensei.textbatch.ToolException;

/**
 * @author ngiraud
 *
 */
public interface JobProgress {

    void notifyLineProcessed(InputLine line);

    double getCompletionPercentage();

    void logStatus();

    void notifyError(ToolException e);
    ToolException[] getErrors();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy