Skip to content

Instantly share code, notes, and snippets.

package br.counterwithrange;
import java.util.concurrent.atomic.AtomicInteger;
public class Counter {
private final int rangeMin;
private final int rangeMax;
private final int step;
private final AtomicInteger counter;