Package org.jboss.virtual.spi

Examples of org.jboss.virtual.spi.VFSContext.cleanup()


         return context.getVFS();

      if (context != null)
      {
         registry.removeContext(context);
         context.cleanup();
      }

      context = factory.getVFS(rootURI); // create new
      VFSRegistry.getInstance().addContext(context);
      return context.getVFS();
View Full Code Here


   protected void ageOut(LRUCacheEntry entry)
   {
      try
      {
         VFSContext context = (VFSContext) entry.m_object;
         context.cleanup();
      }
      catch (Exception e)
      {
         log.debug("Error cleaning up: " + e);
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.