186187188189190191192193194195196
LOG.info("Evicting graph '{}'", routerId); synchronized (graphSources) { GraphSource graphSource = graphSources.get(routerId); graphSources.remove(routerId); if (graphSource != null) { graphSource.evict(); return true; } else { return false; } }