class Protocol::HTTP::Body::Readable

def finish

@returns [Buffered] The buffered body.

Read all remaining chunks into a buffered body and close the underlying input.
def finish
	# Internally, this invokes `self.each` which then invokes `self.close`.
	Buffered.read(self)
end