Package org.jboss.cache.util.internals

Examples of org.jboss.cache.util.internals.EvictionWatcher


    * @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);
   }
View Full Code Here

TOP

Related Classes of org.jboss.cache.util.internals.EvictionWatcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.