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

com.adobe.internal.io.stream.SkippingOutputStream Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
/**
 * 
 */
package com.adobe.internal.io.stream;

import java.io.IOException;
import java.io.OutputStream;

/**
 *	An OutputStream that allows skipping ahead.
 *
 */
public abstract class SkippingOutputStream extends OutputStream
{
	/**
	 * Constructor.
	 */
	protected SkippingOutputStream()
	{
		super();
	}

	/**
	 * Skip ahead in the stream from the current position.
	 * 
	 * @param count number of bytes to skip ahead from the current position
	 * @throws IOException 
	 */
	public abstract void skip(long count) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy