org.apache.fop.render.ps
Interface Finalizable
- All Known Implementing Classes:
- ASCII85OutputStream, FlateEncodeOutputStream, RunLengthEncodeOutputStream
public interface Finalizable
This interface is used for special FilteredOutputStream classes that won't
be closed (since this causes the target OutputStream to be closed, too) but
where flush() is not enough, for example because a final marker has to be
written to the target stream.
- Version:
- $Id: Finalizable.java,v 1.1.2.2 2003/02/25 14:58:23 jeremias Exp $
- Author:
- Jeremias Maerki
Method Summary |
void |
finalizeStream()
This method can be called instead of close() on a subclass of
FilteredOutputStream when a final marker has to be written to the target
stream, but close() cannot be called. |
finalizeStream
void finalizeStream()
throws IOException
- This method can be called instead of close() on a subclass of
FilteredOutputStream when a final marker has to be written to the target
stream, but close() cannot be called.
- Throws:
IOException
- In case of an IO problem
Copyright ? 1999-2003 Apache Software Foundation. All Rights Reserved.