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

com.github.ltsopensource.jvmmonitor.ReferenceCount Maven / Gradle / Ivy

package com.github.ltsopensource.jvmmonitor;

/**
 * @author Robert HG ([email protected]) on 3/14/16.
 */
public interface ReferenceCount {

    /**
     * 增加引用数量
     */
    long incrementAndGet();

    /**
     * 减少引用数量
     */
    long decrementAndGet();

    /**
     * 获取当前的引用数量
     */
    long getCurRefCount();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy