For OneTimeWorkRequest
, we can have setInitialDelay
to specific the initial delay.
However, there isn't such facility for PeriodicWorkRequest
.
Is there any reliable way to achieve so?
One of the less reliable way, is to have a delayed OneTimeWorkRequest
worker, to setup PeriodicWorkRequest
. However, that's quite cumbersome, and create a possibility, where OneTimeWorkRequest
may fail and not able to install PeriodicWorkRequest
.