org.netarchivesuite.heritrix3wrapper.LaunchResultHandlerAbstract Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of heritrix3-wrapper Show documentation
Show all versions of heritrix3-wrapper Show documentation
Wrapper library for unpacking and communicating with Heritrix 3.
package org.netarchivesuite.heritrix3wrapper;
public interface LaunchResultHandlerAbstract {
public void exitValue(int exitValue);
public void output(String line);
public void closeOutput();
public void error(String line);
public void closeError();
}