#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Tue, 04 Jun 2019 12:37:50 +0200
changeset 4976 0f047710f65c
parent 4975 dfb8998b95e0
child 4977 5841e91a657b
#DOCUMENTATION by cg class: Queue comment/format in: #capacity:
Queue.st
--- a/Queue.st	Thu May 30 11:41:06 2019 +0200
+++ b/Queue.st	Tue Jun 04 12:37:50 2019 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1993 by Claus Gittinger
 	      All Rights Reserved
@@ -629,7 +631,9 @@
 
 capacity:newSize
     "change the capacity of the queue. 
-     That is the number of slots it can hold."
+     That is the number of slots it can hold 
+     before the writer gets an exception (here)
+     or is suspended (in SharedQueue)."
 
     |newContentsArray n1 n2|
     
@@ -668,6 +672,8 @@
         ].    
      ].    
     "
+
+    "Modified (comment): / 04-06-2019 / 12:37:16 / Claus Gittinger"
 !
 
 init:size