是否可以通过WorkManager Google API测试 PERIODIC 工作程序,而不必每次执行都至少等待15分钟?
我的意思是,这是一个DEBUG应用程序,并且正在通过Android Studio运行它,我不想等待那么长时间来测试我的功能。
答案 0 :(得分:2)
您不能。
定期工作的最小间隔为15分钟,并且不能有初始延迟。您可以在WorkSpec.java
类中找到证明。
/**
* Sets the periodic interval for this unit of work.
*
* @param intervalDuration The interval in milliseconds
*/
public void setPeriodic(long intervalDuration) {
if (intervalDuration < MIN_PERIODIC_INTERVAL_MILLIS) {
Logger.get().warning(TAG, String.format(
"Interval duration lesser than minimum allowed value; Changed to %s",
MIN_PERIODIC_INTERVAL_MILLIS));
intervalDuration = MIN_PERIODIC_INTERVAL_MILLIS;
}
setPeriodic(intervalDuration, intervalDuration);
}
但是还有其他解决方法。
OneTimeWorkRequest
,例如:interface Scheduler {
fun schedule()
}
class DebugScheduler {
fun schedule() {
WorkManager.getInstance().enqueue(
OneTimeWorkRequest.Builder(MyWorker::class.java)
.build()
)
}
}
class ProductionScheduler {
fun schedule() {
// your actual scheduling logic
}
}
答案 1 :(得分:1)