Class Reference
IRIS for UNIX 2024.1.2
|
|
Private
Storage
|
%Stream.DynamicBinary character stream containing
the 8-bit binary bytes of
an element of a
One way to create a %Stream.DynamicBinary
is by making a method call that
looks like dao.%Get(key,default,"stream"), dao.%Get(key,default,"stream
|
|
Properties | ||||
---|---|---|---|---|
%Location | AtEnd | Id | LastModified | LineTerminator |
Position | Size |
|
Write out len bytes of the stream to the current device starting from the current position. If len is omitted or set to -1 then theOutputToDevice method will write out the entire stream starting at the beginning and then rewind back to the beginning. If len > 0 and we are unable to write len bytes because we reach the end of the stream then we will stop writing and set theAtEnd property to 1. Otherwise, we will leave the stream positioned after the last byte written to the device. If parameter len is passed by reference and if no error occurs then the number of bytes actually written to the output device will be assigned to len. If zero bytes are written because we are already positioned at the end of the stream then len will be assigned to -1. If an error occurs while writing the device then len will be assigned to -2, an error%Status value will be returned and the stream will rollback to its original position.
This reads from the stream until it finds theLineTerminator and returns a new%Stream.TmpCharacter stream containing the bytes in the line. If the stream does not contain the line terminator then this can potentially be the entire stream.