module Async::HTTP::Body::Reader

def stop(error = EOFError)

Immediately stop reading the body. May close the underlying connection. Discards body.
def stop(error = EOFError)
	if self.body
		self.body.stop(error)
		self.body = nil
	end
end