124125126127128129130131132133134
/** * @return Should we retry the call ? */ public boolean shouldRetry() { EnumQueryResult result = getQueryResult(); return (result != null) ? result.shouldRetry() : false; } /** * @return Maximum number of retry attempts. */