$darkmode
![]() |
Qore Programming Language Reference Manual 1.14.0
|
This class is not intended to be instantiated directly, please see StreamPipe. More...
#include <QC_PipeOutputStream.dox.h>
Public Member Functions | |
nothing | close () |
Closes the output stream and releases any resources. More... | |
nothing | reportError (hash ex) |
Causes all operations on both pipe streams to wake up and throw an exception. More... | |
nothing | write (binary data) |
Writes bytes to the output stream. More... | |
![]() | |
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... | |
![]() | |
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... | |
Protected Member Functions | |
constructor () | |
Creates the PipeOutputStream. | |
This class is not intended to be instantiated directly, please see StreamPipe.
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.
|
virtual |
Closes the output stream and releases any resources.
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 |
Implements Qore::OutputStream.
nothing Qore::PipeOutputStream::reportError | ( | hash | ex | ) |
Causes all operations on both pipe streams to wake up and throw an exception.
Normally used from the background thread to report an error to the main thread.
ex | the exception, must contain strings 'err' and 'desc' |
|
virtual |
Writes bytes to the output stream.
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 |
Implements Qore::OutputStream.