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

org.kuali.maven.plugins.jenkins.helper.Counter Maven / Gradle / Ivy

package org.kuali.maven.plugins.jenkins.helper;

/**
 * The worlds simplest counter
 */
public class Counter {
    private static long count = 0;

    public static final synchronized long increment() {
        return count++;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy