class Async::HTTP::Body::ZStream

def stop(error)

def stop(error)
	# There are two ways for the stream to be closed. Either #read returns nil or #stop is called.
	@stream.close unless @stream.closed?
	
	super
end