Backoff Criteria
data class BackoffCriteria(val backoffPolicy: BackoffPolicy, val backoffDelay: Long, val timeUnit: TimeUnit)
The criteria for FhirSyncWorker failure retry based on androidx.work.WorkRequest.Builder.setBackoffCriteria
Properties
Link copied to clipboard
Backoff delay for each retry attempt. Check androidx.work.PeriodicWorkRequest.MIN_BACKOFF_MILLIS and androidx.work.PeriodicWorkRequest.MAX_BACKOFF_MILLIS for the min-max supported values
Link copied to clipboard
Backoff policy androidx.work.BackoffPolicy
Link copied to clipboard
The time unit for backoffDelay