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

org.infinispan.health.impl.HostInfoImpl Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.health.impl;

import org.infinispan.health.HostInfo;

public class HostInfoImpl implements HostInfo {

    @Override
    public int getNumberOfCpus() {
        return Runtime.getRuntime().availableProcessors();
    }

    @Override
    public long getTotalMemoryKb() {
        return Runtime.getRuntime().totalMemory() / 1024;
    }

    @Override
    public long getFreeMemoryInKb() {
        return Runtime.getRuntime().freeMemory() / 1024;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy