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

com.daioware.net.http.request.reader.Reader Maven / Gradle / Ivy

package com.daioware.net.http.request.reader;

import java.io.IOException;

public interface Reader{
	public boolean canOpen();
	public long size();
	public void open()throws IOException;
	public int read(byte[] bytes, int offset, int length)throws IOException;
	public void close()throws IOException;
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy