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

ru.progrm_jarvis.javacommons.io.wrapper.NonAutoCloseableOutputStream Maven / Gradle / Ivy

package ru.progrm_jarvis.javacommons.io.wrapper;

import ru.progrm_jarvis.javacommons.service.NonAutoCloseable;

import java.io.IOException;
import java.io.OutputStream;

/**
 * A {@link NonAutoCloseable} wrapper for {@link OutputStream}.
 */
public abstract class NonAutoCloseableOutputStream extends OutputStream implements NonAutoCloseable {

    @Override
    public void close() {}

    @Override
    public abstract void doClose() throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy