Qore Programming Language Reference Manual 2.0.0
|
This class is not intended to be instantiated directly, please see StreamPipe. More...
#include <QC_PipeInputStream.dox.h>
Public Member Methods | |
nothing | finishClose () |
Call when the background operation is finished to wakeup PipeOutputStream::close(). | |
int | peek () |
Peeks the next byte available from the input stream; returns -1 if no more data available. | |
__7_ binary | read (int limit) |
Reads bytes (up to a specified limit) from the input stream; returns NOTHING if there are no more bytes in the stream. | |
nothing | reportError (hash ex) |
Causes all operations on both pipe streams to wake up and throw an exception. | |
Public Member Methods inherited from Qore::InputStream | |
constructor () | |
Constructor. | |
abstract int | peek () |
Peeks the next byte available from the input stream; returns -1 if no more data available. | |
abstract __7_ binary | read (int limit) |
Reads bytes (up to a specified limit) from the input stream; returns NOTHING if there are no more bytes in the 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. | |
Private Member Methods | |
constructor () | |
Creates the PipeInputStream. | |
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.int Qore::PipeInputStream::peek | ( | ) |
Peeks the next byte available from the input stream; returns -1 if no more data available.
Reads bytes (up to a specified limit) from the input stream; returns NOTHING if there are no more bytes in the stream.
INPUT-STREAM-ERROR | limit is not positive |