class Async::HTTP::FixedBody

def read

def read
	if @remaining > 0
		if chunk = @stream.read(@remaining)
			@remaining -= chunk.bytesize
			
			return chunk
		end
	end
end