@Override public int getPercentCompleted() { double percent = (double) (System.currentTimeMillis() - getStartTime()) / (double) timeChop.time(); return (int) Math.floor(Math.min(100, percent * 100)); }
@Override public int getThreads() { return timeChop.threads(); }
@Override public boolean getSaturate() { return timeChop.saturate(); }
@Override public long getDelay() { return timeChop.delay(); }