class Async::HTTP::Protocol::HTTP2::Stream

def stop_connection(error)

def stop_connection(error)
	if @body
		@body.close(error)
		@body = nil
	end
	
	@delegate.stop_connection(error)
end