Package org.damour.base.client.objects

Examples of org.damour.base.client.objects.MemoryStats


      }
    }
  }

  public MemoryStats getMemoryStats() throws SimpleMessageException {
    MemoryStats stats = new MemoryStats();
    stats.setMaxMemory(Runtime.getRuntime().maxMemory());
    stats.setTotalMemory(Runtime.getRuntime().totalMemory());
    stats.setFreeMemory(Runtime.getRuntime().freeMemory());
    return stats;
  }
View Full Code Here

TOP

Related Classes of org.damour.base.client.objects.MemoryStats

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.