ExternalStream.st
changeset 22978 589f146aebcd
parent 22849 a14c777df83d
child 23032 3555c5883830
equal deleted inserted replaced
22977:6069c5ca7b34 22978:589f146aebcd
  5799     ^ handle notNil and:[self isExecutor not]
  5799     ^ handle notNil and:[self isExecutor not]
  5800 
  5800 
  5801     "Modified: / 23-04-2018 / 18:28:07 / stefan"
  5801     "Modified: / 23-04-2018 / 18:28:07 / stefan"
  5802 !
  5802 !
  5803 
  5803 
       
  5804 isPipeStream
       
  5805     "return true, if this stream is a pipe"
       
  5806 
       
  5807     ^ false
       
  5808 !
       
  5809 
  5804 isReadable
  5810 isReadable
  5805     "return true, if this stream can be read from"
  5811     "return true, if this stream can be read from"
  5806 
  5812 
  5807     ^ mode ~~ #writeonly
  5813     ^ mode ~~ #writeonly
       
  5814 !
       
  5815 
       
  5816 isSocket
       
  5817     "return true, if this stream is a socket"
       
  5818 
       
  5819     ^ false
  5808 !
  5820 !
  5809 
  5821 
  5810 isWritable
  5822 isWritable
  5811     "return true, if this stream can be written to"
  5823     "return true, if this stream can be written to"
  5812 
  5824