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

org.infinispan.health.HostInfo Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.health;

/**
 * Information about the host.
 *
 * @author Sebastian Łaskawiec
 * @since 9.0
 */
public interface HostInfo {

    /**
     * Returns the number of CPUs installed in the host.
     */
    int getNumberOfCpus();

    /**
     * Gets total memory in KB.
     */
    long getTotalMemoryKb();

    /**
     * Gets free memory in KB.
     */
    long getFreeMemoryInKb();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy