Executes a synchronous operation in a managed transaction with automatic retry on retryable failures, using RetryPolicy#DEFAULT. A fresh transaction is created for each attempt. The transaction is always discarded after the operation completes or fails. {@code Response resp = clien
(TransactionOp<T> op)
| 703 | * non-retryable error occurs |
| 704 | */ |
| 705 | public <T> T withRetry(TransactionOp<T> op) { |
| 706 | return withRetry(RetryPolicy.DEFAULT, op); |
| 707 | } |
| 708 | |
| 709 | /** |
| 710 | * Executes a synchronous operation in a managed transaction with automatic retry on retryable |
nothing calls this directly
no test coverage detected