com.adobe.internal.io.stream.SkippingOutputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/**
*
*/
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