org.webpieces.webserver.impl.filereaders.ChunkReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-webserver Show documentation
Show all versions of http-webserver Show documentation
The full webpieces server AS A library
package org.webpieces.webserver.impl.filereaders;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.concurrent.CompletableFuture;
public interface ChunkReader {
CompletableFuture read(ByteBuffer buf, String filePathForLogging, int position);
void close() throws IOException;
}