ActorStream.st
changeset 446 cdc38afc4957
parent 337 a2266ae17d1b
child 554 84eb4d58dd04
equal deleted inserted replaced
445:4b863f317af7 446:cdc38afc4957
    43 
    43 
    44     These blocks are to be provided by the user of the ActorStream.
    44     These blocks are to be provided by the user of the ActorStream.
    45     Example use is in the Transcript, which is made Stream-like this way.
    45     Example use is in the Transcript, which is made Stream-like this way.
    46 
    46 
    47     [Instance variables:]
    47     [Instance variables:]
    48 
       
    49         nextPutBlock    <Block>   the block to evaluate for nextPut:-messages
    48         nextPutBlock    <Block>   the block to evaluate for nextPut:-messages
    50         nextPutAllBlock <Block>   same for nextPutAll:-messages
    49         nextPutAllBlock <Block>   same for nextPutAll:-messages
    51         nextBlock       <Block>   the Block to evaluate for the next element
    50         nextBlock       <Block>   the Block to evaluate for the next element
    52 
    51 
    53     [author:]
    52     [author:]
   126 ! !
   125 ! !
   127 
   126 
   128 !ActorStream class methodsFor:'documentation'!
   127 !ActorStream class methodsFor:'documentation'!
   129 
   128 
   130 version
   129 version
   131     ^ '$Header: /cvs/stx/stx/libbasic2/ActorStream.st,v 1.4 1996-05-14 15:40:40 cg Exp $'
   130     ^ '$Header: /cvs/stx/stx/libbasic2/ActorStream.st,v 1.5 1996-09-20 07:34:04 cg Exp $'
   132 ! !
   131 ! !