(long error)
| 152 | } |
| 153 | |
| 154 | private static boolean isRetryError(long error) { |
| 155 | return error == Procedure.CancelException || |
| 156 | error == Procedure.RaftRetry || |
| 157 | error == Procedure.DuplicateRequest; |
| 158 | } |
| 159 | |
| 160 | @SuppressWarnings("SameReturnValue") |
| 161 | private <TArgument extends Serializable, TResult extends Serializable> |
no outgoing calls
no test coverage detected