module Async::HTTP::Body::Reader

def finish

Gracefully finish reading the body. This will buffer the remainder of the body.
def finish
	if self.body
		self.body = self.body.close
	end
end