| |
|
| java.lang.Object org.apache.cocoon.webservices.memory.Memory
Memory | public class Memory (Code) | | Class which provides JVM memory related SOAP services.
author: Marcus Crafter version: CVS $Id: Memory.java 433543 2006-08-22 06:22:54Z crossley $ |
Method Summary | |
public static long | getFreeMemory() getFreeMemory returns the amount of free memory
in the system. | public static long | getTotalMemory() getTotalMemory returns the total amount of memory
in the JVM. | public static void | invokeGC() invokeGC calls upon the JVM Garbage Collector to
recycle unused objects. |
getFreeMemory | public static long getFreeMemory()(Code) | | getFreeMemory returns the amount of free memory
in the system.
the amount of free memory in the system |
getTotalMemory | public static long getTotalMemory()(Code) | | getTotalMemory returns the total amount of memory
in the JVM.
the total amount of memory in the JVM |
invokeGC | public static void invokeGC()(Code) | | invokeGC calls upon the JVM Garbage Collector to
recycle unused objects.
|
|
|
|