| 1 | <?php |
||
| 8 | trait CallAndRetry |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * call $callable and retry if necessary |
||
| 12 | * @param callable $callable |
||
| 13 | * @param RetryStrategy $strategy |
||
| 14 | * @param RetryConnection $connection |
||
| 15 | * @return |
||
| 16 | * @throws Exception |
||
| 17 | */ |
||
| 18 | private function callAndRetry(callable $callable, RetryStrategy $strategy, RetryConnection $connection) |
||
| 31 | } |
||
| 32 |