Tools__BackgroundSourceProcessingService.st
branchjv
changeset 17214 c192b970f250
parent 16764 ecd1c24daeeb
parent 17165 4089fe579338
child 18532 cccb41254edf
equal deleted inserted replaced
17163:4bf9cb558e1c 17214:c192b970f250
       
     1 "{ Encoding: utf8 }"
       
     2 
     1 "
     3 "
     2  COPYRIGHT (c) 2006 by eXept Software AG
     4  COPYRIGHT (c) 2006 by eXept Software AG
     3               All Rights Reserved
     5               All Rights Reserved
     4 
     6 
     5  This software is furnished under a license and may be used
     7  This software is furnished under a license and may be used
   199             "/ process already created, but did not get a change to start yet;
   201             "/ process already created, but did not get a change to start yet;
   200             ^ self
   202             ^ self
   201         ].
   203         ].
   202         job stop.
   204         job stop.
   203     ].
   205     ].
   204     prio := Processor userBackgroundPriority.
   206     prio := (Processor activePriority - 1) min:Processor userBackgroundPriority.
   205     job startWithPriority: prio.
   207     job startWithPriority: prio.
   206 
   208 
   207     "Modified: / 07-07-2011 / 12:26:12 / Jan Vrany <jan.vrant@fit.cvut,cz>"
   209     "Modified: / 07-07-2011 / 12:26:12 / Jan Vrany <jan.vrant@fit.cvut,cz>"
   208     "Created: / 24-01-2012 / 12:15:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   210     "Created: / 24-01-2012 / 12:15:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   209     "Modified: / 05-06-2012 / 23:58:20 / cg"
   211     "Modified: / 05-06-2012 / 23:58:20 / cg"