![]() |
Qore Programming Language Reference Manual 1.14.0
|
This class defines an abstract interface for output streams. More...
#include <QC_OutputStream.dox.h>
Public Member Methods | |
| abstract nothing | close () |
| Flushes any buffered (unwritten) bytes, closes the output stream and releases all resources. More... | |
| constructor () | |
| Constructor. More... | |
| abstract nothing | write (binary data) |
| Writes bytes to the output stream. More... | |
Public Member Methods inherited from Qore::StreamBase | |
| constructor () | |
| Throws an exception if called directly; this class can only be instantiated by builtin subclasses. More... | |
| 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. More... | |
| nothing | unassignThread () |
| Unassigns current thread as thread used for stream manipulation. More... | |
This class defines an abstract interface for output streams.
Classes inheriting this class can be used to write bytes to files, sockets, memory etc.
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.
|
pure virtual |
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.
Implemented in Qore::BinaryOutputStream, Qore::EncodingConversionOutputStream, Qore::FileOutputStream, Qore::PipeOutputStream, Qore::StderrOutputStream, Qore::StdoutOutputStream, Qore::StringOutputStream, and Qore::TransformOutputStream.
| Qore::OutputStream::constructor | ( | ) |
Constructor.
Used by subclasses defined in the Qore programming language.
|
pure virtual |
Writes bytes to the output stream.
| data | the data to write |
Implemented in Qore::BinaryOutputStream, Qore::EncodingConversionOutputStream, Qore::FileOutputStream, Qore::PipeOutputStream, Qore::StderrOutputStream, Qore::StdoutOutputStream, Qore::StringOutputStream, and Qore::TransformOutputStream.