+readWait for ext/stream compatibility
authorjames
Tue, 29 Oct 2002 11:55:29 +0100
changeset 6814 eb7703491da0
parent 6813 b03e92a48a76
child 6815 71582d439a74
+readWait for ext/stream compatibility
ReadStream.st
--- a/ReadStream.st	Tue Oct 29 10:41:18 2002 +0100
+++ b/ReadStream.st	Tue Oct 29 11:55:29 2002 +0100
@@ -81,6 +81,16 @@
     "Modified: 15.5.1996 / 17:30:33 / cg"
 ! !
 
+!ReadStream methodsFor:'misc'!
+
+readWait
+    ^ self "/ never have to wait
+!
+
+readWaitWithTimeoutMs:millis
+    ^ false "/ never have to wait
+! !
+
 !ReadStream methodsFor:'queries'!
 
 copyFrom:beginning to:end
@@ -689,5 +699,5 @@
 !ReadStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ReadStream.st,v 1.44 2001-12-13 19:05:04 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ReadStream.st,v 1.45 2002-10-29 10:55:29 james Exp $'
 ! !