public interface IRetryStrategy
| Modifier and Type | Method and Description |
|---|---|
void |
doWithRetry(Action0 action)
Retries a function without a return value.
|
<TResult> TResult |
getWithRetry(Func1<TResult> function)
Retries a function with a return values.
|
void doWithRetry(Action0 action)
action - Action to invoke.<TResult> TResult getWithRetry(Func1<TResult> function)
TResult - Result of the invocation.function - Function to invoke.Copyright © 2017. All rights reserved.