Package com.sun.jini.norm.lookup

Examples of com.sun.jini.norm.lookup.SubStore


     * @throws IOException if it has difficulty removing the log files
     */
    void destroy() throws IOException {
  // Prep all the sub-stores to be destroyed
  for (Iterator i = subStores.iterator(); i.hasNext(); ) {
      SubStore subStore = (SubStore) i.next();
      subStore.prepareDestroy();
  }
  if (log != null) {
      log.deletePersistentStore();
      FileSystem.destroy(storeLocation, true);
  }
View Full Code Here

TOP

Related Classes of com.sun.jini.norm.lookup.SubStore

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.