Stream.st
branchjv
changeset 19229 c20beb908660
parent 19227 5e949760a4e8
parent 19221 d7e9529963a4
child 19236 e6403ba50de1
equal deleted inserted replaced
19228:f2f3abaadcb4 19229:c20beb908660
   272 
   272 
   273     ^ self nextPutShort:aNumber MSB:true
   273     ^ self nextPutShort:aNumber MSB:true
   274 
   274 
   275     "Modified: 10.1.1996 / 19:39:19 / cg"
   275     "Modified: 10.1.1996 / 19:39:19 / cg"
   276 ! !
   276 ! !
       
   277 
       
   278 
   277 
   279 
   278 !Stream methodsFor:'accessing'!
   280 !Stream methodsFor:'accessing'!
   279 
   281 
   280 contents
   282 contents
   281     "return the entire contents of the stream.
   283     "return the entire contents of the stream.
  3593 !Stream methodsFor:'waiting for I/O'!
  3595 !Stream methodsFor:'waiting for I/O'!
  3594 
  3596 
  3595 readWait
  3597 readWait
  3596     "suspend the current process, until the receiver
  3598     "suspend the current process, until the receiver
  3597      becomes ready for reading. If data is already available,
  3599      becomes ready for reading. If data is already available,
  3598      return immediate.
  3600      return immediately.
  3599      The other threads are not affected by the wait."
  3601      The other threads are not affected by the wait."
  3600 
  3602 
  3601     ^ self readWaitWithTimeoutMs:nil
  3603     ^ self readWaitWithTimeoutMs:nil
  3602 !
  3604 !
  3603 
  3605