[Pkg] Sake : Sake-Scheduler-kph.6.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Sun Oct 26 02:41:24 UTC 2008


A new version of Sake-Scheduler was added to project Sake :
http://www.squeaksource.com/Sake/Sake-Scheduler-kph.6.mcz

==================== Summary ====================

Name: Sake-Scheduler-kph.6
Author: kph
Time: 26 October 2008, 2:41:22 am
UUID: d857b85e-1cf6-4344-b5da-e782840637e5
Ancestors: Sake-Scheduler-kph.5

print the class name when printing a task

=============== Diff against Sake-Scheduler-kph.5 ===============

Item was changed:
  ----- Method: ScheduledTask>>printOn: (in category 'printing') -----
  printOn: aStream
  
+ 	aStream nextPutAll: (self class name); cr.
- 	aStream nextPutAll: 'Scheduled Task'; cr.
  	self description ifNotNil: [aStream nextPutAll: self description; cr].
  	
  	self isRunning ifTrue: [aStream nextPutAll: 'CURRENTLY RUNNING !!!!'].
  	self isSuspended ifTrue: [aStream nextPutAll: ' (suspended)'].
  	
  	aStream
  		cr;
  		nextPutAll: 'Next Run Time : ', self nextRunTime asString;
  		cr;
  		nextPutAll: 'Last Run Time : ', (runHistory isEmptyOrNil 
  			ifTrue: [runHistory ifNil: [ '<not logged>' ] ifNotNil: [ '<never run>' ] ]
  			ifFalse: [runHistory last asString]).!



More information about the Packages mailing list