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

com.wix.mysql.io.ProgressStepper Maven / Gradle / Ivy

There is a newer version: 4.6.2
Show newest version
package com.wix.mysql.io;

public class ProgressStepper {

    int lastReported = -1;

    public boolean hasNext(int value) {
        return (nextCandidate(value) != lastReported);
    }

    public int setAndGet(int value) {
        lastReported = nextCandidate(value);
        return lastReported;
    }

    private int nextCandidate(int value) {
        return (int)(5 * (Math.floor(Math.abs(value / 5))));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy