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

org.netarchivesuite.heritrix3wrapper.AnypathResult Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
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;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy