Signal.st
changeset 12005 1f653391be9c
parent 11637 a29ee3f72ce2
child 12006 a86008133c3e
equal deleted inserted replaced
12004:3f1e0cdd7529 12005:1f653391be9c
   834      After the block evaluation, finally raise the signal - if it was raised in the block.
   834      After the block evaluation, finally raise the signal - if it was raised in the block.
   835      If the signal is raised multiple times, only the first raises parameter is remembered,
   835      If the signal is raised multiple times, only the first raises parameter is remembered,
   836      and only a single raise is performed after the blocks evaluation.
   836      and only a single raise is performed after the blocks evaluation.
   837 
   837 
   838      Deferring makes sense for some signals, such as UserInterrupt or AbortSignal, 
   838      Deferring makes sense for some signals, such as UserInterrupt or AbortSignal, 
   839      which must occasionally be delayed temprarily until a save place is reached 
   839      which must occasionally be delayed temporarily until a save place is reached 
   840      (especially when packages are sent across a communication channel, and you dont want
   840      (especially when packages are sent across a communication channel, and you dont want
   841       partial packages to be generated by user interruptions)."
   841       partial packages to be generated by user interruptions)."
   842 
   842 
   843     |coughtException result|
   843     |coughtException result|
   844 
   844 
   965 ! !
   965 ! !
   966 
   966 
   967 !Signal class methodsFor:'documentation'!
   967 !Signal class methodsFor:'documentation'!
   968 
   968 
   969 version
   969 version
   970     ^ '$Header: /cvs/stx/stx/libbasic/Signal.st,v 1.105 2009-03-17 16:21:53 stefan Exp $'
   970     ^ '$Header: /cvs/stx/stx/libbasic/Signal.st,v 1.106 2009-09-22 14:26:05 cg Exp $'
   971 ! !
   971 ! !