class Protocol::HTTP::Body::Readable

def finish

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.for(self)
end