Add #incompleteNextCountSignal
authorStefan Vogel <sv@exept.de>
Fri, 21 Dec 2001 17:33:12 +0100
changeset 6348 202f389800c7
parent 6347 1268259f426a
child 6349 e2129a5fe59e
Add #incompleteNextCountSignal
Stream.st
--- a/Stream.st	Fri Dec 21 13:17:20 2001 +0100
+++ b/Stream.st	Fri Dec 21 17:33:12 2001 +0100
@@ -153,6 +153,12 @@
     ^ EndOfStreamSignal
 !
 
+incompleteNextCountSignal
+    "return the signal raised if not all requested elements are returned"
+
+    ^ IncompleteNextCountError
+!
+
 lineTooLongErrorSignal
     "return the signal raised if a line is read which is too long (>32k)"
 
@@ -2235,6 +2241,6 @@
 !Stream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Stream.st,v 1.98 2001-12-13 19:00:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Stream.st,v 1.99 2001-12-21 16:33:12 stefan Exp $'
 ! !
 Stream initialize!