Package org.infinispan.loader.modifications

Examples of org.infinispan.loader.modifications.Clear


      }

      @Override
      @SuppressWarnings("unchecked")
      public Object visitClearCommand(InvocationContext ctx, ClearCommand command) throws Throwable {
         modifications.add(new Clear());
         return null;
      }
View Full Code Here


   public void store(InternalCacheEntry ed) {
      enqueue(new Store(ed));
   }

   public void clear() {
      enqueue(new Clear());
   }
View Full Code Here

TOP

Related Classes of org.infinispan.loader.modifications.Clear

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.