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

com.mozafaq.extmergesort.StreamWriter 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.OutputStream;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy