All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opensextant.processing.RuntimeTools Maven / Gradle / Ivy

There is a newer version: 3.7.3
Show newest version
package org.opensextant.processing;

public class RuntimeTools {

    /**
     * Easily digestible version of memory report.
     * @return KB of memory
     */
    public static final int reportMemory() {
        Runtime R = Runtime.getRuntime();
        long usedMemory = R.totalMemory() - R.freeMemory();
        return (int) (usedMemory / 1024);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy