OsProcessStream
Description
A process stream is an abstract class for any kind of stream that is associated with an <OsNativeProcess>. It has method to facilitate getting character or byte data. It also has methods that help with line delimiters.
Class Methods
<details> new
<pre><code> Answer a new os process stream
Answers:
<OsProcessStream>
</code></pre> </details>
Instance Methods
<details> isBytes
<pre><code> Answer true if the receiver handles IO data as bytes, false otherwise.
Answers:
<Boolean>
</code></pre> </details>
<details> isBytes:
<pre><code> If flag is true, set the receiver's IO data type to bytes. If flag is false, set the IO data type to characters.
Arguments:
aBoolean - <Boolean>
</code></pre> </details>
<details> isCharacters
<pre><code> Answer true if the receiver answers IO data as characters
Answers:
<Boolean>
</code></pre> </details>
<details> isCharacters:
<pre><code> If flag is true, set the receiver's IO data type to characters. If flag is false, set the IO data type to bytes.
Arguments:
aBoolean - <Boolean>
</code></pre> </details>
<details> isNullStream
</details>
<details> lineDelimiter
Return the line delimiter of the receiver.
</details>
<details> lineDelimiter:
Set the line delimiter of the receiver.
</details>
Last modified date: 07/07/2022