validateBackgroundInterval static method
Validates if a background processing interval is valid
Implementation
static bool validateBackgroundInterval(int intervalSeconds) {
return intervalSeconds >= minimumRetryInterval &&
intervalSeconds <= maximumRetryInterval;
}