Package net.fqsc.inscriptions.model.db.db4o

Examples of net.fqsc.inscriptions.model.db.db4o.Db4oInscriptionsContext


  public void testMemory() throws Exception
  {
    System.out.println("Total debut : " + Runtime.getRuntime().totalMemory());
    System.out.println("Free debut : " + Runtime.getRuntime().freeMemory());
   
    IPersistentModelContext context = new Db4oInscriptionsContext();
    System.gc();
   
    System.out.println("Total fin : " + Runtime.getRuntime().totalMemory());
    System.out.println("Free fin : " + Runtime.getRuntime().freeMemory());
  }
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.model.db.db4o.Db4oInscriptionsContext

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.