class Async::HTTP::Body::Readable

def finish

Read all remaining chunks into a buffered body and close the underlying input.
def finish
	buffered = Buffered.for(self)
	
	self.close
	
	return buffered
end