Class AStandardOutputStream
Unit
classwork
Declaration
type AStandardOutputStream = class(AStream)
Description
This class allows access to stdout as though it was a file stream. The class does not support reading or seeking and will fail silently if these operations are attempted. The primary reason for this class to exist is to allow console output to be used in conjunction with any class that supports writing to an arbitrary stream.
Note that if you want to print text using this stream, you must create an instance of ATextOutputStream that wraps around it.
Hierarchy
Overview
Fields
Methods
Description
Fields
|
myPosition: TStreamOffset; |
Stores the current position within the stream
|
Methods
|
function init: boolean; override; |
Initializer
|
|
function read(const count: TStreamIOSize; var dest): TStreamIOSize; override; |
Read count bytes from the stream and store them in dest .
This method fails silently for this class and will always return zero (0).
|
|
function write(const count: TStreamIOSize; const source): TStreamIOSize; override; |
Write count bytes from source to the stream. See AStream.write for more information on this method.
Returns
The total number of bytes written to the stream. |
|
function length: TStreamLength; override; |
Retrieve the size of the stream, in bytes. This value is simply the number of bytes that have been written to the stream since it was created.
|
Generated by PasDoc 0.13.0 on 2015-06-23 19:40:11
|