SharedCollection.st
changeset 1636 a3e5703901c8
parent 1635 a3aaefef0a2c
child 1637 72a61c17925c
--- a/SharedCollection.st	Mon May 08 15:20:01 2006 +0200
+++ b/SharedCollection.st	Mon May 08 15:21:45 2006 +0200
@@ -39,6 +39,11 @@
 "
     Instances of this class provide synchronized access (of multiple processes) 
     to a collection.
+
+    Notice: the message-forwarding is done by catching sbclassResponsibility and
+    doesNotUnderstand errors.
+    For performance, and for more complex operation-atomicy, more messages might need
+    an explicit handling. See the implementation of #at: / #at:put: and #size for examples.
 "
 !
 
@@ -143,5 +148,5 @@
 !SharedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.3 2006-05-08 13:20:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.4 2006-05-08 13:21:45 cg Exp $'
 ! !