ActorStr.st
changeset 3 24d81bf47225
parent 0 aa2498ef6470
child 5 67342904af11
equal deleted inserted replaced
2:6526dde5f3ac 3:24d81bf47225
     1 "
     1 "
     2  COPYRIGHT (c) 1989/90/91 by Claus Gittinger
     2  COPYRIGHT (c) 1989-93 by Claus Gittinger
     3               All Rights Reserved
     3               All Rights Reserved
     4 
     4 
     5  This software is furnished under a license and may be used
     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
     6  only in accordance with the terms of that license and with the
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
    17        category:'Streams'
    17        category:'Streams'
    18 !
    18 !
    19 
    19 
    20 ActorStream comment:'
    20 ActorStream comment:'
    21 
    21 
    22 COPYRIGHT (c) 1989/90/91 by Claus Gittinger
    22 COPYRIGHT (c) 1989-93 by Claus Gittinger
    23               All Rights Reserved
    23               All Rights Reserved
    24 
    24 
    25 This class provides a hook for general objects to behave like Streams;
    25 This class provides a hook for general objects to behave like Streams;
    26 To the outside, ActorStreams behave like streams and respond to the
    26 To the outside, ActorStreams behave like streams and respond to the
    27 usual streams messages (i.e. nextPut:).
    27 usual streams messages (i.e. nextPut:).
    33 
    33 
    34 nextPutBlock    <Block>   the block to evaluate for nextPut:-messages
    34 nextPutBlock    <Block>   the block to evaluate for nextPut:-messages
    35 nextPutAllBlock <Block>   same for nextPutAll:-messages
    35 nextPutAllBlock <Block>   same for nextPutAll:-messages
    36 nextBlock       <Block>   the Block to evaluate for the next element
    36 nextBlock       <Block>   the Block to evaluate for the next element
    37 
    37 
    38 @(#)ActorStr.st	2.4 92/06/28
    38 $Header: /cvs/stx/stx/libbasic/Attic/ActorStr.st,v 1.3 1993-10-13 00:14:10 claus Exp $
    39 written winter 89 by claus
    39 written winter 89 by claus
    40 '!
    40 '!
    41 
    41 
    42 !ActorStream class methodsFor:'instance creation'!
    42 !ActorStream class methodsFor:'instance creation'!
    43 
    43