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

com.mozafaq.extmergesort.StreamReader Maven / Gradle / Ivy

There is a newer version: 2.0.4.RELEASE
Show newest version
package com.mozafaq.extmergesort;

import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;

/**
 * @author Mozaffar Afaque
 */
public interface StreamReader extends Closeable {
    InputStream open() throws IOException;
    InputStream get();
    String getFullPath();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy