1 package net.secodo.jcircuitbreaker.breakhandler.impl; 2 3 import net.secodo.jcircuitbreaker.breaker.execution.ExecutionContext; 4 5 6 public interface RetryHandlerOnRetryCallback<R> { 7 void onRetry(int currentRetryAttempt, ExecutionContext<R> executionContext); 8 9 }