class Async::HTTP::Pool

def release(resource)

Make the resource available and let waiting tasks know that there is something available.
def release(resource)
	# A resource that is not good should also not be reusable.
	if resource.reusable?
		reuse(resource)
	else
		retire(resource)
	end
end