# File lib/aws/s3/data_options.rb, line 172
        def read_chunk bytes
          buffer = StringIO.new
          @write_block.call(buffer, bytes)
          buffer.rewind
          @eof = true if buffer.size < bytes
          buffer.read
        end