TimedPromise.st
changeset 1522 7a569eca4d68
parent 1487 b243952bd3f1
child 3187 a5364888759b
equal deleted inserted replaced
1521:4daa5084e31e 1522:7a569eca4d68
       
     1 "
       
     2  COPYRIGHT (c) 2004 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
     1 "{ Package: 'stx:libbasic2' }"
    13 "{ Package: 'stx:libbasic2' }"
     2 
    14 
     3 Promise subclass:#TimedPromise
    15 Promise subclass:#TimedPromise
     4 	instanceVariableNames:'delay ms'
    16 	instanceVariableNames:'delay ms'
     5 	classVariableNames:''
    17 	classVariableNames:''
     6 	poolDictionaries:''
    18 	poolDictionaries:''
     7 	category:'Kernel-Processes'
    19 	category:'Kernel-Processes'
     8 !
    20 !
     9 
    21 
    10 !TimedPromise class methodsFor:'documentation'!
    22 !TimedPromise class methodsFor:'documentation'!
       
    23 
       
    24 copyright
       
    25 "
       
    26  COPYRIGHT (c) 2004 by eXept Software AG
       
    27               All Rights Reserved
       
    28 
       
    29  This software is furnished under a license and may be used
       
    30  only in accordance with the terms of that license and with the
       
    31  inclusion of the above copyright notice.   This software may not
       
    32  be provided or otherwise made available to, or used by, any
       
    33  other person.  No title to or ownership of the software is
       
    34  hereby transferred.
       
    35 "
       
    36 !
    11 
    37 
    12 documentation
    38 documentation
    13 "
    39 "
    14     A TimedPromise is a Promise with a timeout.
    40     A TimedPromise is a Promise with a timeout.
    15     An attempt to read the value of a TimedPromise will wait until the process has finished computing it 
    41     An attempt to read the value of a TimedPromise will wait until the process has finished computing it 
   103 ! !
   129 ! !
   104 
   130 
   105 !TimedPromise class methodsFor:'documentation'!
   131 !TimedPromise class methodsFor:'documentation'!
   106 
   132 
   107 version
   133 version
   108     ^ '$Header: /cvs/stx/stx/libbasic2/TimedPromise.st,v 1.1 2004-11-10 10:43:11 penk Exp $'
   134     ^ '$Header: /cvs/stx/stx/libbasic2/TimedPromise.st,v 1.2 2005-02-02 11:03:54 cg Exp $'
   109 ! !
   135 ! !