class Async::HTTP::Body::Fixed

def read

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