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

com.jmatio.io.stream.BufferedOutputStream Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
/*
 * Code licensed under new-style BSD (see LICENSE).
 * All code up to tags/original: Copyright (c) 2006, Wojciech Gradkowski
 * All code after tags/original: Copyright (c) 2015, DiffPlug
 */
package com.jmatio.io.stream;

import java.io.IOException;
import java.io.OutputStream;
import java.nio.ByteBuffer;

public abstract class BufferedOutputStream extends OutputStream {
	/**
	 * Returns the backing {@link ByteBuffer}
	 * @return
	 */
	public abstract ByteBuffer buffer() throws IOException;

	public abstract long size() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy