@Override public final void reset() throws IOException { Logger.getGlobal().info("call reset"); backoff.reset(); }
/** * nextBackOffMillis method. * * @return nextBack. * @throws IOException intercepts exceptions. */ @Override public final long nextBackOffMillis() throws IOException { long nexTime = backoff.nextBackOffMillis(); Logger.getGlobal().info("call nextBackOffMillis: " + nexTime); return nexTime; }