OsProcessStream
A process stream is an abstract class for any kind of stream that is associated with an <OsProcess>. It has method to facilitate getting character or byte data. It also has methods that help with line delimiters.
Class Methods
    new
  Answer a new os process stream
     Answers:
        <OsProcessStream>
 Instance Methods
    isBytes
  Answer true if the receiver handles IO data as bytes,
     false otherwise.
     Answers:
        <Boolean>
 
    isBytes:
  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>
 
    isCharacters
  Answer true if the receiver answers IO data as characters
     Answers:
        <Boolean>
 
    isCharacters:
  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>
 
    lineDelimiter
  Return the line delimiter of the receiver.
 
    lineDelimiter:
  Set the line delimiter of the receiver.
 Last modified date: 02/23/2021