351352353354355356357358359
public void evict(Fqn<?> fqn, boolean recursive) { InvocationContext ctx = invocationContextContainer.get(); cacheStatusCheck(ctx); EvictCommand c = commandsFactory.buildEvictFqnCommand(fqn); c.setRecursive(recursive); invoker.invoke(ctx, c); }
422423424425426427428429430
public void evict(Fqn fqn, boolean recursive) { InvocationContext ctx = invocationContextContainer.get(); cacheStatusCheck(ctx); EvictCommand c = commandsFactory.buildEvictFqnCommand(fqn); c.setRecursive(recursive); invoker.invoke(ctx, c); }
363364365366367368369370371
} public void evict(Fqn fqn, boolean recursive) { InvocationContext ctx = invocationContextContainer.get(); cacheStatusCheck(ctx); EvictCommand c = commandsFactory.buildEvictFqnCommand(fqn); c.setRecursive(recursive); invoker.invoke(ctx, c); }