Package org.apache.fop.pdf
Interface StreamCache
-
- All Known Implementing Classes:
InMemoryStreamCache,TempFileStreamCache
public interface StreamCacheInterface used to store the bytes for a PDFStream. It's actually a generic cached byte array. There's a factory that returns either an in-memory or tempfile based implementation based on a cacheToFile setting.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclear()Clears and resets the cache.java.io.OutputStreamgetOutputStream()Get the current OutputStream.intgetSize()Returns the current size of the stream.intoutputContents(java.io.OutputStream out)Outputs the cached bytes to the given stream.voidwrite(byte[] data)Convenience method for writing data to the stream cache.
-
-
-
Method Detail
-
getOutputStream
java.io.OutputStream getOutputStream() throws java.io.IOExceptionGet the current OutputStream. Do not store it - it may change from call to call.- Returns:
- an output stream for this cache
- Throws:
java.io.IOException- if there is an IO error
-
write
void write(byte[] data) throws java.io.IOExceptionConvenience method for writing data to the stream cache.- Parameters:
data- byte array to write- Throws:
java.io.IOException- if there is an IO error
-
outputContents
int outputContents(java.io.OutputStream out) throws java.io.IOExceptionOutputs the cached bytes to the given stream.- Parameters:
out- the stream to write to- Returns:
- the number of bytes written
- Throws:
java.io.IOException- if there is an IO error
-
getSize
int getSize() throws java.io.IOExceptionReturns the current size of the stream.- Returns:
- the size of the cache
- Throws:
java.io.IOException- if there is an IO error
-
clear
void clear() throws java.io.IOExceptionClears and resets the cache.- Throws:
java.io.IOException- if there is an IO error
-
-