class Async::HTTP::Protocol::HTTP1::Client

def closed(error = nil)

def closed(error = nil)
	super
	
	if pool = @pool
		@pool = nil
		# If the connection is not reusable, this will retire it from the connection pool and invoke `#close`.
		pool.release(self)
	end
end