| 38 | } // namespace |
| 39 | |
| 40 | Status RetryingUtils::CallWithRetries(const std::function<Status()>& f, |
| 41 | const RetryConfig& config) { |
| 42 | return CallWithRetries( |
| 43 | f, |
| 44 | [](int64 micros) { return Env::Default()->SleepForMicroseconds(micros); }, |
| 45 | config); |
| 46 | } |
| 47 | |
| 48 | Status RetryingUtils::CallWithRetries( |
| 49 | const std::function<Status()>& f, |
nothing calls this directly
no test coverage detected