Share via


CarrierConfigManager.KeyEsimDownloadRetryBackoffTimerSecInt Field

Definition

This timer value is used in the eSIM Exponential Backoff download retry algorithm.

[Android.Runtime.Register("KEY_ESIM_DOWNLOAD_RETRY_BACKOFF_TIMER_SEC_INT", ApiSince=33)]
public const string KeyEsimDownloadRetryBackoffTimerSecInt;
[<Android.Runtime.Register("KEY_ESIM_DOWNLOAD_RETRY_BACKOFF_TIMER_SEC_INT", ApiSince=33)>]
val mutable KeyEsimDownloadRetryBackoffTimerSecInt : string

Field Value

Attributes

Remarks

This timer value is used in the eSIM Exponential Backoff download retry algorithm. Value should be in seconds. <OL> <LI>When the first download failure occurs, retry download after BACKOFF_TIMER_VALUE seconds.</LI>

<LI>If download fails again then, retry after either BACKOFF_TIMER_VALUE, 2xBACKOFF_TIMER_VALUE, or 3xBACKOFF_TIMER_VALUE seconds.</LI>

<LI>In general after the cth failed attempt, retry after k * BACKOFF_TIMER_VALUE seconds, where k is a random integer between 1 and 2^c − 1. Max c value is #KEY_ESIM_MAX_DOWNLOAD_RETRY_ATTEMPTS_INT</LI> </OL>

Java documentation for android.telephony.CarrierConfigManager.KEY_ESIM_DOWNLOAD_RETRY_BACKOFF_TIMER_SEC_INT.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to