Skip to content

Instantly share code, notes, and snippets.

Created October 25, 2012 05:37
Show Gist options
  • Save anonymous/3950610 to your computer and use it in GitHub Desktop.
Save anonymous/3950610 to your computer and use it in GitHub Desktop.
class ChunkedReader
{
var parser : ChunkedReaderIterator ( );
public function new ( )
{
parser = ChunkedReaderIterator ( );
}
function read ( ? size : Int ) : String
{
if ( parser ) {
while ( this.buffer.position < size ) {
this.buffer.write ( chunkReaderIterator.next ( ) );
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment