transforms/Xtreams__CollectReadStream.st
changeset 97 2a7827f4dce2
parent 72 d16c7d84d4a8
child 111 44ac233b2f83
equal deleted inserted replaced
96:85e395d8e3d7 97:2a7827f4dce2
     3 "{ NameSpace: Xtreams }"
     3 "{ NameSpace: Xtreams }"
     4 
     4 
     5 ReadStream subclass:#CollectReadStream
     5 ReadStream subclass:#CollectReadStream
     6 	instanceVariableNames:'block cache contentsSpecies direct'
     6 	instanceVariableNames:'block cache contentsSpecies direct'
     7 	classVariableNames:''
     7 	classVariableNames:''
     8 	poolDictionaries:'XtreamsPool'
     8 	poolDictionaries:'Xtreams::XtreamsPool'
     9 	category:'Xtreams-Transforms'
     9 	category:'Xtreams-Transforms'
    10 !
    10 !
    11 
    11 
    12 CollectReadStream comment:'Converts elements being read using the provided conversion block. When the contentSpecies of the source doesn''t match the desired contentSpecies of this stream, we optimize bulk reads by reading into an internal buffer.
    12 CollectReadStream comment:'Converts elements being read using the provided conversion block. When the contentSpecies of the source doesn''t match the desired contentSpecies of this stream, we optimize bulk reads by reading into an internal buffer.
    13 
    13