com.wix.mysql.io.ProgressStepper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wix-embedded-mysql Show documentation
Show all versions of wix-embedded-mysql Show documentation
Embedded MySql for E2E/IT tests
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))));
}
}