Qore Programming Language Reference Manual
1.7.0
|
This class defines an abstract interface for input streams. More...
Public Member Methods | |
constructor () | |
Constructor. More... | |
abstract int | peek () |
Peeks the next byte available from the input stream; returns -1 if no more data available. More... | |
abstract *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. 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 input streams.
Classes inheriting this class can be used to read bytes from various sources.
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.Qore::InputStream::constructor | ( | ) |
Constructor.
Used by subclasses defined in the Qore programming language.
|
pure virtual |
Peeks the next byte available from the input stream; returns -1 if no more data available.
Implemented in Qore::TransformInputStream, Qore::StringInputStream, Qore::PipeInputStream, Qore::FileInputStream, Qore::EncodingConversionInputStream, and Qore::BinaryInputStream.
Reads bytes (up to a specified limit) from the input stream; returns NOTHING if there are no more bytes in the stream.
limit | the maximum number of bytes to read |
Implemented in Qore::TransformInputStream, Qore::StringInputStream, Qore::PipeInputStream, Qore::FileInputStream, Qore::EncodingConversionInputStream, and Qore::BinaryInputStream.