org.netarchivesuite.heritrix3wrapper.AnypathResult 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;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
public class AnypathResult extends ResultAbstract implements Closeable {
public long contentLength;
public ByteRange byteRange;
public InputStream in;
@Override
public void close() throws IOException {
if (in != null) {
in.close();
in = null;
}
}
}