'From Squeak4.2alpha of 19 August 2010 [latest update: #10382] on 22 September 2010 at 11:20 pm'! OrderedCollection subclass: #ObjectFinalizerCollection instanceVariableNames: '' classVariableNames: '' poolDictionaries: '' category: 'System-Finalization'! !ObjectFinalizerCollection commentStamp: 'ul 2/26/2010 14:23' prior: 0! An ObjectFinalizerCollection is simple collection which is intended to hold ObjectFinalizers and be used by WeakRegistry.! !ObjectFinalizerCollection methodsFor: 'finalization' stamp: 'ul 2/25/2010 16:53'! finalize "Finalize all elements in this collection. The elements are expected to be ObjectFinalizers, but can be any object which understands #finalize." self do: #finalize! ! !ObjectFinalizerCollection methodsFor: 'testing' stamp: 'Igor.Stasenko 5/25/2010 04:58'! hasMultipleExecutors ^ true! !