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

com.netflix.evcache.util.RetryCount Maven / Gradle / Ivy

The newest version!
package com.netflix.evcache.util;

public class RetryCount {
    private int retryCount;
    public RetryCount() {
        retryCount = 1;
    }
    public void incr() {
        retryCount++;
    }
    public int get(){
        return retryCount;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy