shouldRetry method

bool shouldRetry()
inherited

In case the task has returned a RegisterApiResult with status retry, this method checks and returns if the call can be retried

Implementation

bool shouldRetry() {
  return retryCount < maximumRetries;
}