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

org.archive.streamcontext.Stream Maven / Gradle / Ivy

There is a newer version: 1.1.9
Show newest version
package org.archive.streamcontext;

import java.io.Closeable;
import java.io.IOException;

/**
 * Alternate simplified interface for accessing data from an underlying source 
 * of bytes.
 *
 * @author brad
 *
 */
public interface Stream extends Closeable {
	public long getOffset();
	public long setOffset(long offset) throws IOException;
	public int read(byte[] bytes, int off, int len) throws IOException;
	public boolean atEof();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy