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

com.github.thorbenkuck.keller.nio.files.Reader Maven / Gradle / Ivy

package com.github.thorbenkuck.keller.nio.files;

import com.github.thorbenkuck.keller.nio.Close;

import java.io.IOException;
import java.util.function.Consumer;

public interface Reader extends Close {

	void read() throws IOException;

	void read(final StringBuilder buffer) throws IOException;

	void processLine(final Consumer consumer);

	void stopProcessing(Consumer consumer);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy