|
Qore Programming Language Reference Manual
0.8.12.3
|
This class implements the OutputStream interface for writing bytes to a Binary buffer. More...

Public Member Functions | |
| nothing | close () |
| Closes the output stream and releases any resources. More... | |
| constructor () | |
| Creates the BinaryOutputStream. | |
| binary | getData () |
| Returns the data written to the stream, clearing the internal buffer. More... | |
| nothing | write (binary data) |
| Writes bytes to the output stream. More... | |
Public Member Functions inherited from Qore::OutputStream | |
| constructor () | |
| Constructor. More... | |
This class implements the OutputStream interface for writing bytes to a Binary buffer.
|
virtual |
Closes the output stream and releases any resources.
Any methods called on a closed output stream will throw an exception.
Implements Qore::OutputStream.
| binary Qore::BinaryOutputStream::getData | ( | ) |
Returns the data written to the stream, clearing the internal buffer.
|
virtual |
Writes bytes to the output stream.
| data | the data to write |
Implements Qore::OutputStream.