* @param fqnsToEvict fqns to watch for
* @return true if evicted, false otherwise
*/
public boolean waitForEviction(Cache cache, long timeToWait, TimeUnit unit, Fqn... fqnsToEvict) throws InterruptedException
{
return new EvictionWatcher(cache, fqnsToEvict).waitForEviction(timeToWait, unit);
}