Qore Programming Language Reference Manual 2.0.0
|
This class implements the OutputStream interface for writing bytes to another OutputStream while applying a transformation. More...
#include <QC_TransformOutputStream.dox.h>
Public Member Methods | |
nothing | close () |
Flushes any buffered (unwritten) bytes, closes the output stream and releases all resources. | |
constructor (Qore::OutputStream os, Qore::Transform t) | |
Creates the TransformOutputStream. | |
nothing | write (binary data) |
Writes bytes to the output stream. | |
Public Member Methods inherited from Qore::OutputStream | |
abstract nothing | close () |
Flushes any buffered (unwritten) bytes, closes the output stream and releases all resources. | |
constructor () | |
Constructor. | |
abstract nothing | write (binary data) |
Writes bytes to the output stream. | |
Public Member Methods inherited from Qore::StreamBase | |
constructor () | |
Throws an exception if called directly; this class can only be instantiated by builtin subclasses. | |
int | getThreadId () |
Get the currently assigned thread id or -1 if not assigned to any thread. | |
nothing | reassignThread () |
Reassigns current thread as thread used for stream manipulation. | |
nothing | unassignThread () |
Unassigns current thread as thread used for stream manipulation. | |
This class implements the OutputStream interface for writing bytes to another OutputStream while applying a transformation.
STREAM-THREAD-ERROR
to be thrown, unless the stream is handed off to another thread using the StreamBase::unassignThread() method in the thread that currently owns the stream, and the StreamBase::reassignThread() method in the new thread.nothing Qore::TransformOutputStream::close | ( | ) |
Flushes any buffered (unwritten) bytes, closes the output stream and releases all resources.
Any methods called on a closed output stream will throw an exception.
OUTPUT-STREAM-CLOSED-ERROR | the output stream has already been closed |
STREAM-THREAD-ERROR | this exception is thrown if this method is called from any thread other than the thread that created the object |
Qore::TransformOutputStream::constructor | ( | Qore::OutputStream | os, |
Qore::Transform | t | ||
) |
Creates the TransformOutputStream.
os | the underlying OutputStream where the transformed data will be written to |
t | the transformation to apply |
Writes bytes to the output stream.
data | the data to write |
OUTPUT-STREAM-CLOSED-ERROR | the output stream has already been closed |
STREAM-THREAD-ERROR | this exception is thrown if this method is called from any thread other than the thread that created the object |