PeriodicWorkRequest.Builder  |  API reference  |  Android Developers (original) (raw)


public final class PeriodicWorkRequest.Builder extends WorkRequest.Builder


Builder for [PeriodicWorkRequest](/reference/androidx/work/PeriodicWorkRequest)s.

Summary

Public constructors
@RequiresApi(value = 26)Builder( @NonNull Class<@NonNull ListenableWorker> workerClass, @NonNull Duration repeatInterval) Creates a PeriodicWorkRequest to run periodically once every interval period.
@RequiresApi(value = 26)Builder( @NonNull KClass<@NonNull ListenableWorker> workerClass, @NonNull Duration repeatInterval) Creates a PeriodicWorkRequest to run periodically once every interval period.
@RequiresApi(value = 26)Builder( @NonNull Class<ListenableWorker> workerClass, @NonNull Duration repeatInterval, @NonNull Duration flexInterval) Creates a PeriodicWorkRequest to run periodically once within the flex period of every interval period.
Builder( @NonNull Class<ListenableWorker> workerClass, long repeatInterval, @NonNull TimeUnit repeatIntervalTimeUnit) Creates a PeriodicWorkRequest to run periodically once every interval period.
@RequiresApi(value = 26)Builder( @NonNull KClass<@NonNull ListenableWorker> workerClass, @NonNull Duration repeatInterval, @NonNull Duration flexInterval) Creates a PeriodicWorkRequest to run periodically once within the flex period of every interval period.
Builder( @NonNull KClass<@NonNull ListenableWorker> workerClass, long repeatInterval, @NonNull TimeUnit repeatIntervalTimeUnit) Creates a PeriodicWorkRequest to run periodically once every interval period.
Builder( @NonNull Class<ListenableWorker> workerClass, long repeatInterval, @NonNull TimeUnit repeatIntervalTimeUnit, long flexInterval, @NonNull TimeUnit flexIntervalTimeUnit) Creates a PeriodicWorkRequest to run periodically once within the flex period of every interval period.
Builder( @NonNull KClass<@NonNull ListenableWorker> workerClass, long repeatInterval, @NonNull TimeUnit repeatIntervalTimeUnit, long flexInterval, @NonNull TimeUnit flexIntervalTimeUnit) Creates a PeriodicWorkRequest to run periodically once within the flex period of every interval period.

Public constructors

Public methods

clearNextScheduleTimeOverride

public final @NonNull PeriodicWorkRequest.Builder clearNextScheduleTimeOverride()

Clears any override set by [setNextScheduleTimeOverride](/reference/androidx/work/PeriodicWorkRequest.Builder#setNextScheduleTimeOverride%28kotlin.Long%29).

When an override is cleared, the next schedule is based on the previous enqueue time or run time of the Work and the result of that previous run. Eg. if the previous run returned [ListenableWorker.Result.Retry](/reference/androidx/work/ListenableWorker.Result.Retry) at some time=T, and the next run was set by override, then clearing that override will return the schedule to T+backoffInterval if using linear backoff.

Override may be cleared while a Worker is running. The worker will schedule the next run based on its result type and interval.

setNextScheduleTimeOverride

public final @NonNull PeriodicWorkRequest.Builder setNextScheduleTimeOverride(long nextScheduleTimeOverrideMillis)

Overrides the next time this work is scheduled to run.

Calling this method sets a specific time at which the work will be scheduled to run next, overriding the normal interval, flex, initial delay, and backoff.

This allows dynamic calculation of the next Periodic work schedule, which can be used to implement advanced features like adaptive refresh times, custom retry behavior, or making a newsfeed worker run before the user wakes up every morning without drift. [ExistingPeriodicWorkPolicy.UPDATE](/reference/androidx/work/ExistingPeriodicWorkPolicy#UPDATE) should be used with these techniques to avoid cancelling a currently-running worker while scheduling the next one.

This method only sets the single next Work schedule. After that Work finishes, the override will be cleared and the Work will be scheduled normally according to the interval or backoff. The override can be cleared by setting [clearNextScheduleTimeOverride](/reference/androidx/work/PeriodicWorkRequest.Builder#clearNextScheduleTimeOverride%28%29) on a work update request. Otherwise, the override time will persist after unrelated invocations of [WorkManager.updateWork](/reference/androidx/work/WorkManager#updateWork%28androidx.work.WorkRequest%29).

This method can be used from outside or inside a [Worker.startWork](/reference/androidx/work/Worker#startWork%28%29) method. If the Worker is currently running, then it will override the next time the Work starts, even if the current Worker returns [ListenableWorker.Result.Retry](/reference/androidx/work/ListenableWorker.Result.Retry). This behavior can be used to customize the backoff behavior of a Worker by catching Exceptions in startWork and using this method to schedule a retry.

[MIN_PERIODIC_INTERVAL_MILLIS](/reference/androidx/work/PeriodicWorkRequest#MIN%5FPERIODIC%5FINTERVAL%5FMILLIS%28%29) is enforced on this method to prevent infinite loops. If a previous run time occurred less than the minimum period before the override time, then the override schedule will be delayed to preserve the minimum spacing. This restriction does not apply to the very first run of periodic work, which may be instant.

Work will almost never run at this exact time in the real world. This method assigns the scheduled run time accurately, but cannot guarantee an actual run time. Actual Work run times are dependent on many factors like the underlying system scheduler, doze and power saving modes of the OS, and meeting any configured constraints. This is expected and is not considered a bug.

Parameters
long nextScheduleTimeOverrideMillis The time, in System.currentTimeMillis time, to schedule this work next. If this is in the past, work may run immediately.