setBackgroundProcessingInterval static method
Configures the background processing interval
intervalSeconds must be between minimumRetryInterval and maximumRetryInterval
Implementation
static bool setBackgroundProcessingInterval(int intervalSeconds) {
if (intervalSeconds < minimumRetryInterval ||
intervalSeconds > maximumRetryInterval) {
return false;
}
_currentBackgroundInterval = intervalSeconds;
return true;
}