IncrementNotification.st
author Stefan Vogel <sv@exept.de>
Wed, 01 Aug 2018 15:12:02 +0200
changeset 4708 713e81a051ec
parent 2857 6934efb6b22d
permissions -rw-r--r--
#BUGFIX by stefan class: List removed: #synchronizationSemaphore: changed: #asSharedCollection #beSynchronized Do not make me implicitly #beSynchronized, if someone sends a #synchronized: message to myself.

"{ Package: 'stx:libbasic2' }"

Notification subclass:#IncrementNotification
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Notifications'
!

!IncrementNotification class methodsFor:'documentation'!

documentation
"
    Used in VW to notify incremental progress (progress indicator).
    Not currently used in ST/X, but here to support porting of code.
"
! !

!IncrementNotification class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic2/IncrementNotification.st,v 1.2 2012-11-23 12:13:30 cg Exp $'
! !