Esempio n. 1
0
 @Override
 public final void reset() throws IOException {
   Logger.getGlobal().info("call reset");
   backoff.reset();
 }
Esempio n. 2
0
 /**
  * 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;
 }